Cargo.toml
1 [package] 2 name = "fedimint-empty-common" 3 version = { workspace = true } 4 authors = ["The Fedimint Developers"] 5 edition = "2021" 6 description = "fedimint-empty-common is a empty fedimint module (common types)" 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 [lib] 15 name = "fedimint_empty_common" 16 path = "src/lib.rs" 17 18 [dependencies] 19 anyhow = { workspace = true } 20 fedimint-core = { workspace = true } 21 serde = { workspace = true } 22 thiserror = { workspace = true }