-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (88 loc) · 2.54 KB
/
Cargo.toml
File metadata and controls
96 lines (88 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[workspace]
members = ["crates/*"]
default-members = ["crates/icp-cli"]
exclude = ["examples/icp-rust", "examples/icp-rust-recipe"]
resolver = "3"
[workspace.package]
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2024"
repository = "https://github.com/dfinity/icp-cli"
rust-version = "1.88.0"
license = "Apache-2.0"
[workspace.dependencies]
anyhow = "1.0.100"
async-trait = "0.1.88"
bigdecimal = "0.4.8"
bip32 = "0.5.0"
byte-unit = "5.1.6"
camino = { version = "1.1.9", features = ["serde1"] }
camino-tempfile = "1"
candid = "0.10.19"
candid_parser = "0.1"
clap = { version = "4.5.3", features = ["derive", "env"] }
clap-markdown = "0.1.5"
console = "0.16.0"
dialoguer = "0.11.0"
directories = "6.0.0"
dunce = "1.0.5"
ed25519-consensus = "2.1.0"
elliptic-curve = { version = "0.13.8", features = ["sec1", "std", "pkcs8"] }
fd-lock = "4.0.4"
futures = "0.3.31"
glob = "0.3.2"
handlebars = "6.3.2"
hex = "0.4.3"
httptest = "0.16.3"
ic-agent = { version = "0.44.1" }
ic-asset = { version = "0.25.0" }
ic-ledger-types = "0.15.0"
ic-management-canister-types = { version = "0.4.1" }
ic-utils = { version = "0.44.1" }
icp = { path = "crates/icp" }
icp-canister-interfaces = { path = "crates/icp-canister-interfaces" }
icrc-ledger-types = "0.1.10"
indicatif = "0.18.0"
itertools = "0.14.0"
k256 = { version = "0.13.4", features = ["pem", "pkcs8", "std"] }
lazy_static = "1.5.0"
mockall = "0.13.1"
p256 = { version = "0.13.2", features = ["pem", "pkcs8", "std"] }
pathdiff = { version = "0.2.3", features = ["camino"] }
pem = "3.0.5"
phf = { version = "0.13.1", features = ["macros"] }
pkcs8 = { version = "0.10.2", features = ["encryption", "std"] }
pocket-ic = "10.0.0"
rand = "0.9.1"
scrypt = "0.11.0"
sec1 = { version = "0.7.3", features = ["pkcs8"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.34"
sha2 = "0.10.9"
shellwords = "1.1.0"
slog = "2.7.0"
snafu = "0.8.5"
strum = { version = "0.27", features = ["derive"] }
tempfile = "3"
thiserror = "2.0.16"
time = "0.3.9"
tiny-bip39 = "2.0.0"
tokio = { version = "1.45.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
url = "2.5.4"
uuid = { version = "1.16.0", features = ["serde", "v4"] }
zeroize = "1.8.1"
[workspace.dependencies.reqwest]
version = "0.12.15"
default-features = false
features = ["rustls-tls"]
[workspace.dependencies.schemars]
version = "0.8.19"
features = ["derive"]
[workspace.lints.rust]
missing_debug_implementations = "warn"
[workspace.lints.clippy]
enum_variant_names = "allow"
[profile.dev.package.scrypt]
opt-level = 3