[package] name = "fedimint-meta-client" version = { workspace = true } authors = ["The Fedimint Developers"] edition = "2021" description = "fedimint-meta is a meta consensus fedimint module." license = "MIT" readme = "../../README.md" repository = "https://github.com/fedimint/fedimint" [package.metadata.docs.rs] rustc-args = ["--cfg", "tokio_unstable"] [lib] name = "fedimint_meta_client" path = "src/lib.rs" [features] default = [] cli = ["dep:clap"] [dependencies] anyhow = { workspace = true } async-trait = "0.1.80" clap = { workspace = true, optional = true } erased-serde = { workspace = true } fedimint-api-client = { workspace = true } fedimint-client = { workspace = true } fedimint-core = { workspace = true } fedimint-meta-common = { version = "=0.4.3", path = "../fedimint-meta-common" } futures = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } strum = { workspace = true } strum_macros = { workspace = true } thiserror = { workspace = true } tracing = { workspace = true }