|
1 | 1 | [package] |
2 | 2 | name = "cli" |
3 | 3 | description = "Command-line interface for the Threshold network" |
4 | | -version = "0.1.0" |
5 | | -edition = "2024" |
6 | | -repository = "https://github.com/onthreshold/threshold/" |
7 | | -license = "MIT" |
8 | | -keywords = ["bitcoin", "cryptocurrency", "wallet", "cli"] |
9 | | -categories = ["cryptography", "blockchain"] |
| 4 | +version.workspace = true |
| 5 | +edition.workspace = true |
| 6 | +license.workspace = true |
| 7 | +keywords.workspace = true |
| 8 | +categories.workspace = true |
| 9 | +readme.workspace = true |
10 | 10 |
|
11 | 11 | [dependencies] |
12 | | -tokio = { workspace = true, features = ["full", "macros", "rt-multi-thread"] } |
| 12 | +tokio.workspace = true |
| 13 | +libp2p.workspace = true |
| 14 | +rand.workspace = true |
| 15 | +serde.workspace = true |
| 16 | +serde_json.workspace = true |
| 17 | +clap.workspace = true |
| 18 | +bs58.workspace = true |
| 19 | +directories.workspace = true |
| 20 | +argon2.workspace = true |
| 21 | +aes-gcm.workspace = true |
| 22 | +base64.workspace = true |
| 23 | +rpassword.workspace = true |
| 24 | +dotenvy.workspace = true |
| 25 | +derive_more.workspace = true |
| 26 | +tonic.workspace = true |
| 27 | + |
13 | 28 | node = { path = "../../crates/node" } |
14 | 29 | types = { path = "../../crates/types" } |
15 | | -libp2p = { workspace = true } |
16 | | -rand = { workspace = true } |
17 | | -serde = { workspace = true, features = ["derive"] } |
18 | | -serde_json = { workspace = true } |
19 | | -clap = { version = "4.4", features = ["derive"] } |
20 | | -bs58 = "0.5" |
21 | | -directories = "6.0.0" |
22 | | -argon2 = "0.5" |
23 | | -aes-gcm = "0.10" |
24 | | -base64 = "0.22.1" |
25 | | -rpassword = "7.2" |
26 | | -dotenvy = "0.15.7" |
27 | | -derive_more = { version = "2.0.1", features = ["full"] } |
28 | | -tonic = { workspace = true } |
29 | 30 |
|
30 | 31 | [dev-dependencies] |
31 | | -tempfile = "3.8" |
32 | | -assert_matches = "1.5" |
| 32 | +tempfile.workspace = true |
| 33 | +assert_matches.workspace = true |
33 | 34 |
|
34 | 35 | [lints] |
35 | 36 | workspace = true |
0 commit comments