aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
blob: c4e57a25a6297a42aab0f0453c2633f03f74554d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "catinator_macros"
version = "0.1.0"
edition = "2018"

[lib]
proc-macro = true

[dependencies]
syn = { version = "1", features = ["parsing"] }
proc-macro2 = "1"
quote = "1"

[dev-dependencies]
tokio = "*"
futures = "*"
irc = { version = "0.15", features = ["json", "tls-rust"], default_features = false }
tracing = "*"
anyhow = "*"
regex = "*"
catinator = { path = "../" }