/ fedimint-derive / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-derive"
 3  version = {workspace = true}
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-derive provides helper macros for serialization."
 7  license = "MIT"
 8  readme = "../README.md"
 9  repository = "https://github.com/fedimint/fedimint"
10  
11  [lib]
12  proc-macro = true
13  name = "fedimint_derive"
14  path = "src/lib.rs"
15  
16  [features]
17  diagnostics = []
18  
19  [dependencies]
20  itertools = { workspace = true }
21  proc-macro2 = "1.0"
22  quote = "1.0"
23  syn = { version = "2.0", features = ["full"] }