/ fedimint-cli / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fedimint-cli"
 3  version = {workspace = true}
 4  authors = ["The Fedimint Developers"]
 5  edition = "2021"
 6  description = "fedimint-cli is a command line interface wrapper for the client library."
 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  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15  [[bin]]
16  name = "fedimint-cli"
17  path = "src/main.rs"
18  
19  [lib]
20  name = "fedimint_cli"
21  path = "src/lib.rs"
22  
23  [dependencies]
24  anyhow = { workspace = true }
25  async-trait = { workspace = true }
26  base64 = "0.22.1"
27  bip39 = { version = "2.0.0", features = ["rand"] }
28  bitcoin = { workspace = true }
29  time = { version = "0.3.36", features = [ "formatting" ] }
30  clap = { workspace = true }
31  futures = { workspace = true }
32  itertools = { workspace = true }
33  lightning-invoice = { version = "0.30.0", features = [ "serde" ] }
34  fedimint-aead = { version = "=0.4.0-alpha", path = "../crypto/aead" }
35  fedimint-bip39 = { version = "=0.4.0-alpha", path = "../fedimint-bip39" }
36  fedimint-client = { version = "=0.4.0-alpha", path = "../fedimint-client" }
37  fedimint-core = { workspace = true }
38  fedimint-api-client = { workspace = true }
39  fedimint-rocksdb = { version = "=0.4.0-alpha", path = "../fedimint-rocksdb" }
40  fedimint-mint-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-mint-client" }
41  fedimint-mint-common = { version = "=0.4.0-alpha", path = "../modules/fedimint-mint-common" }
42  fedimint-ln-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-ln-client", features = [ "cli" ] }
43  fedimint-ln-common = { version = "=0.4.0-alpha", path = "../modules/fedimint-ln-common" }
44  fedimint-wallet-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-wallet-client" }
45  fedimint-logging = { version = "=0.4.0-alpha", path = "../fedimint-logging" }
46  fedimint-server = { version = "=0.4.0-alpha", path = "../fedimint-server" }
47  fedimint-meta-client = { version = "=0.4.0-alpha", path = "../modules/fedimint-meta-client", features = [ "cli" ] }
48  fedimint-meta-common = { version = "=0.4.0-alpha", path = "../modules/fedimint-meta-common" }
49  fs-lock = "0.1.3"
50  hex = { workspace = true }
51  rand = { workspace = true }
52  serde = { workspace = true }
53  thiserror = { workspace = true }
54  tokio = { version = "1.37.0", features = ["full", "tracing"] }
55  tracing = { workspace = true }
56  tracing-subscriber = { version = "0.3.18", features = [ "env-filter" ] }
57  serde_json = { version = "1.0.117", features = ["preserve_order"] }
58  url = { version = "2.5.0", features = ["serde"] }
59  clap_complete = "4.5.2"
60  reqwest = { version = "0.11.26", features = [ "json", "rustls-tls" ], default-features = false }
61  
62  [build-dependencies]
63  fedimint-build = { version = "=0.4.0-alpha", path = "../fedimint-build" }