Cargo.toml
1 [package] 2 name = "fedimint-portalloc" 3 version = { workspace = true } 4 authors = ["The Fedimint Developers"] 5 edition = "2021" 6 description = "Port allocation utility for Fedimint" 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_portalloc" 16 path = "src/lib.rs" 17 18 [dependencies] 19 anyhow = { workspace = true } 20 dirs = "5.0.1" 21 fedimint-core = { workspace = true } 22 fs2 = "0.4.3" 23 rand = { workspace = true } 24 serde = { workspace = true } 25 serde_json = { workspace = true } 26 tracing = { workspace = true }