Cargo.toml
1 [package] 2 name = "fedimint-wallet-client" 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 [features] 15 default = [] 16 cli = ["dep:clap"] 17 18 [lib] 19 name = "fedimint_wallet_client" 20 path = "src/lib.rs" 21 22 [dependencies] 23 anyhow = { workspace = true } 24 aquamarine = { workspace = true } 25 async-stream = { workspace = true } 26 async-trait = { workspace = true } 27 bitcoin = { workspace = true } 28 clap = { workspace = true, optional = true } 29 erased-serde = { workspace = true } 30 fedimint-api-client = { workspace = true } 31 fedimint-client = { workspace = true } 32 fedimint-core = { workspace = true } 33 fedimint-eventlog = { workspace = true } 34 fedimint-logging = { workspace = true } 35 fedimint-wallet-common = { workspace = true } 36 futures = { workspace = true } 37 rand = { workspace = true } 38 serde = { workspace = true } 39 serde_json = { workspace = true } 40 strum = { workspace = true } 41 strum_macros = { workspace = true } 42 tokio = { workspace = true } 43 tracing = { workspace = true } 44 45 [target.'cfg(not(target_family = "wasm"))'.dependencies] 46 fedimint-bitcoind = { workspace = true } 47 48 [target.'cfg(target_family = "wasm")'.dependencies] 49 fedimint-bitcoind = { version = "=0.6.0-alpha", path = "../../fedimint-bitcoind", default-features = false, features = [ 50 "esplora-client", 51 ] }