/ fedimint-client / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-client"
 3  version = {workspace = true}
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-client provides a library for sending transactions to the federation."
 7  license = "MIT"
 8  readme = "../README.md"
 9  repository = "https://github.com/fedimint/fedimint"
10  
11  [package.metadata.cargo-udeps.ignore]
12  # cargo udeps can't detect that one
13  normal = ["aquamarine"]
14  
15  [package.metadata.docs.rs]
16  rustc-args = ["--cfg", "tokio_unstable"]
17  
18  [lib]
19  name = "fedimint_client"
20  path = "src/lib.rs"
21  
22  [dependencies]
23  anyhow = { workspace = true }
24  aquamarine = "0.5.0"
25  async-stream = "0.3.5"
26  async-trait = { workspace = true }
27  bitcoin = { workspace = true }
28  fedimint-core = { workspace = true }
29  fedimint-api-client  = { workspace = true }
30  fedimint-derive-secret = { version = "=0.4.0-alpha", path = "../crypto/derive-secret" }
31  fedimint-aead = { version = "=0.4.0-alpha", path = "../crypto/aead" }
32  fedimint-logging = { version = "=0.4.0-alpha", path = "../fedimint-logging" }
33  futures = { workspace = true }
34  itertools = { workspace = true }
35  rand = { workspace = true }
36  secp256k1-zkp = "0.9.2"
37  serde = { workspace = true }
38  serde_json = { workspace = true }
39  strum = { workspace = true }
40  strum_macros = { workspace = true }
41  thiserror = { workspace = true }
42  tokio = { version = "1.37.0", features = [ "time", "macros", "rt" ] }
43  tokio-stream = { version = "0.1.15", features = [ "time", "sync" ] }
44  tracing = { workspace = true }
45  reqwest = { version = "0.12.2", features = ["json", "rustls-tls"], default-features = false }
46  
47  [target.'cfg(target_family = "wasm")'.dependencies]
48  ring = { version = "0.17.8", features = ["wasm32_unknown_unknown_js"] }
49  
50  [dev-dependencies]
51  tracing-test = "0.2.4"
52  
53  [build-dependencies]
54  fedimint-build = { version = "=0.4.0-alpha", path = "../fedimint-build" }