Cargo.toml
 1  [package]
 2  name = "fedimint-testing-core"
 3  version = { workspace = true }
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-testing provides a basic utils for testing fedimint components"
 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_testing_core"
16  path = "src/lib.rs"
17  
18  [dependencies]
19  anyhow = { workspace = true }
20  fedimint-client = { workspace = true }
21  fedimint-core = { workspace = true }
22  fedimint-logging = { workspace = true }
23  fedimint-rocksdb = { workspace = true }
24  futures = { workspace = true }
25  rand = { workspace = true }
26  tempfile = "3.14.0"
27  tokio = { workspace = true }
28  tracing = { workspace = true }