/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "acdc-cli"
 3  version = "0.1.0"
 4  edition = "2021"
 5  description = "ACDC Command Line Interface for Alpha/Delta chains"
 6  license = "MIT OR Apache-2.0"
 7  repository = "https://source.ac-dc.network/alpha-delta-network/acdc-cli"
 8  
 9  [[bin]]
10  name = "acdc"
11  path = "src/main.rs"
12  
13  [dependencies]
14  wallet-core = { git = "https://source.ac-dc.network/alpha-delta-network/wallet-core.git", branch = "main" }
15  clap = { version = "4.5", features = ["derive"] }
16  tokio = { version = "1.38", features = ["full"] }
17  serde = { version = "1.0", features = ["derive"] }
18  serde_json = "1.0"
19  hex = "0.4"
20  colored = "2.1"
21  dialoguer = "0.11"
22  indicatif = "0.17"
23  anyhow = "1.0"
24  dirs = "5.0"
25  qr2term = "0.3"
26  rpassword = "7.3"
27  
28  [dev-dependencies]
29  assert_cmd = "2.0"
30  predicates = "3.1"
31  
32  [profile.release]
33  lto = true
34  strip = true