/ fedimint-testing / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-testing"
 3  version = { workspace = true }
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-testing provides a library of shared objects and utilities 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  [features]
15  default = ["tor"]
16  tor = ["ln-gateway/tor"]
17  
18  [lib]
19  name = "fedimint_testing"
20  path = "src/lib.rs"
21  
22  [dependencies]
23  anyhow = { workspace = true }
24  async-stream = { workspace = true }
25  async-trait = { workspace = true }
26  bcrypt = { workspace = true }
27  bitcoin = { workspace = true }
28  bitcoincore-rpc = { workspace = true }
29  fedimint-api-client = { workspace = true }
30  fedimint-bitcoind = { workspace = true }
31  fedimint-client = { workspace = true }
32  fedimint-core = { workspace = true }
33  fedimint-ln-common = { workspace = true }
34  fedimint-logging = { workspace = true }
35  fedimint-portalloc = { workspace = true }
36  fedimint-rocksdb = { workspace = true }
37  fedimint-server = { workspace = true }
38  fedimint-testing-core = { workspace = true }
39  fs-lock = { workspace = true }
40  lightning-invoice = { workspace = true }
41  ln-gateway = { package = "fedimint-ln-gateway", path = "../gateway/ln-gateway", version = "=0.6.0-alpha", default-features = false }
42  rand = { workspace = true }
43  tempfile = "3.14.0"
44  tokio = { workspace = true }
45  tokio-rustls = { workspace = true }
46  tracing = { workspace = true }