Cargo.toml
1 [package] 2 name = "fedimint-meta-client" 3 version = { workspace = true } 4 authors = ["The Fedimint Developers"] 5 edition = "2021" 6 description = "fedimint-meta is a meta consensus fedimint module." 7 license = "MIT" 8 readme = "../../README.md" 9 repository = "https://github.com/fedimint/fedimint" 10 11 [package.metadata.docs.rs] 12 rustc-args = ["--cfg", "tokio_unstable"] 13 14 [features] 15 default = [] 16 cli = ["dep:clap"] 17 18 [lib] 19 name = "fedimint_meta_client" 20 path = "src/lib.rs" 21 22 [dependencies] 23 anyhow = { workspace = true } 24 async-trait = { workspace = true } 25 clap = { workspace = true, optional = true } 26 erased-serde = { workspace = true } 27 fedimint-api-client = { workspace = true } 28 fedimint-client = { workspace = true } 29 fedimint-core = { workspace = true } 30 fedimint-logging = { workspace = true } 31 fedimint-meta-common = { workspace = true } 32 serde = { workspace = true } 33 serde_json = { workspace = true } 34 strum = { workspace = true } 35 strum_macros = { workspace = true } 36 thiserror = { workspace = true } 37 tracing = { workspace = true }