aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
blob: a833e36ec928622ecf0afe27c2f35c332c1a89f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "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 = "../" }