Cargo.toml
 1  [package]
 2  name = "fedimint-wallet-server"
 3  version = { workspace = true }
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-wallet is a n on-chain bitcoin wallet module. It uses a key-value store and is not a standard HD wallet."
 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_wallet_server"
16  path = "src/lib.rs"
17  
18  [dependencies]
19  anyhow = { workspace = true }
20  async-trait = { workspace = true }
21  bitcoin = { workspace = true }
22  erased-serde = { workspace = true }
23  fedimint-bitcoind = { workspace = true }
24  fedimint-core = { workspace = true }
25  fedimint-logging = { workspace = true }
26  fedimint-metrics = { workspace = true }
27  fedimint-server = { workspace = true }
28  fedimint-wallet-common = { workspace = true }
29  futures = { workspace = true }
30  hex = { workspace = true }
31  jaq-core = { workspace = true }
32  jaq-json = { workspace = true }
33  miniscript = { workspace = true }
34  rand = { workspace = true }
35  reqwest = { workspace = true }
36  serde = { workspace = true }
37  serde_json = { workspace = true }
38  strum = { workspace = true }
39  strum_macros = { workspace = true }
40  tokio = { workspace = true }
41  tracing = { workspace = true }