-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
122 lines (115 loc) · 3.58 KB
/
Cargo.toml
File metadata and controls
122 lines (115 loc) · 3.58 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[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"
version = "0.2.1-beta.0"
repository = "https://github.com/dfinity/icp-cli"
rust-version = "1.88.0"
license = "Apache-2.0"
publish = false
[workspace.dependencies]
anstyle = "1.0.13"
anyhow = "1.0.100"
assert_cmd = "2"
async-dropper = { version = "0.3.0", features = ["tokio", "simple"] }
async-trait = "0.1.88"
backoff = { version = "0.4", features = ["tokio"] }
bigdecimal = "0.4.10"
bip32 = "0.5.0"
bollard = "0.20.1"
byte-unit = "5.1.6"
camino = { version = "1.1.9", features = ["serde1"] }
cargo-generate = "0.23.7"
camino-tempfile = "1"
candid = "0.10.19"
candid_parser = "0.3.0"
clap = { version = "4.5.3", features = ["derive", "env"] }
clap-markdown = "0.1.5"
cryptoki = "0.12.0"
dialoguer = "0.12.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"
flate2 = { version = "1.1.8", default-features = false, features = ["zlib-rs"] }
futures = "0.3.31"
glob = "0.3.2"
handlebars = "6.3.2"
hex = { version = "0.4.3", features = ["serde"] }
httptest = "0.16.3"
ic-agent = { version = "0.46.0" }
ic-asset = "0.28.0"
ic-ed25519 = "0.6.0"
ic-ledger-types = "0.16.0"
ic-management-canister-types = { version = "0.7.1" }
ic-utils = { version = "0.46.0" }
icp = { path = "crates/icp" }
icp-canister-interfaces = { path = "crates/icp-canister-interfaces" }
ic-identity-hsm = "0.46.0"
icrc-ledger-types = "0.1.10"
indicatif = "0.18.0"
indoc = "2.0.6"
itertools = "0.14.0"
jsonschema = "0.45.0"
k256 = { version = "0.13.4", features = ["pem", "pkcs8", "std"] }
keyring = { version = "3.6.3", features = ["apple-native", "windows-native", "sync-secret-service", "crypto-rust"] }
lazy_static = "1.5.0"
mockall = "0.14.0"
nix = { version = "0.31.2", features = ["process", "signal"] }
notify = "8.2.0"
num-bigint = "0.4.6"
num-integer = "0.1.46"
num-traits = "0.2.19"
p256 = { version = "0.13.2", features = ["pem", "pkcs8", "std"] }
pathdiff = { version = "0.2.3", features = ["camino"] }
predicates = "3"
pem = "3.0.5"
phf = { version = "0.13.1", features = ["macros"] }
pkcs8 = { version = "0.10.2", features = ["encryption", "std"] }
rand = "0.10.0"
regex = "1.12.2"
reqwest = { version = "0.13.2", default-features = false, features = ["rustls", "json", "stream"] }
schemars = { version = "1.0.4", features = ["derive", "url2"] }
scrypt = "0.11.0"
sec1 = { version = "0.7.3", features = ["pkcs8"] }
send_ctrlc = "0.6"
semver = "1"
serial_test = { version = "3.2.0", features = ["file_locks"] }
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.9.0"
strum = { version = "0.28.0", features = ["derive"] }
sysinfo = "0.38.4"
tar = "0.4.44"
tempfile = "3"
test-tag = "0.1"
time = { version = "0.3.47", features = ["formatting", "macros"] }
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 = { version = "2.5.4", features = ["serde"] }
uuid = { version = "1.16.0", features = ["serde", "v4"] }
wasmparser = "0.245.1"
winreg = "0.55"
wslpath2 = "0.1"
zeroize = "1.8.1"
[workspace.lints.rust]
missing_debug_implementations = "warn"
[workspace.lints.clippy]
enum_variant_names = "allow"
[profile.dev.package.scrypt]
opt-level = 3
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"