blob: cdba18d45c9c12c6a42f4807c32981dcdca69a62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[package]
name = "catinator_macros"
version = "0.3.0"
edition = "2018"
description = "proc macros for catinator"
license = "ISC"
homepage = "https://gitlab.com/cocainefarm/gnulag/catinator"
repository = "https://gitlab.com/cocainefarm/gnulag/catinator"
documentation = "https://docs.rs/catinator_macros"
[lib]
proc-macro = true
[dependencies]
syn = { version = "2", features = ["full"] }
proc-macro2 = "1"
quote = "1"
[dev-dependencies]
tokio = "1"
futures = "0"
irc = { version = "1", features = [
"json",
"tls-rust",
], default-features = false }
tracing = "0"
anyhow = "1"
regex = "1"
catinator = { path = "../" }
|