-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (65 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
71 lines (65 loc) · 1.9 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
[workspace]
members = [
"bin/icp-cli",
"lib/icp-adapter",
"lib/icp-canister",
"lib/icp-dirs",
"lib/icp-fs",
"lib/icp-identity",
"lib/icp-network",
"lib/icp-project",
]
resolver = "3"
[workspace.dependencies]
async-trait = "0.1.88"
bip32 = "0.5.0"
camino = { version = "1.1.9", features = ["serde1"] }
camino-tempfile = "1"
candid = "0.10.14"
clap = { version = "4.5.3", features = ["derive"] }
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"
glob = "0.3.2"
hex = "0.4.3"
ic-agent = { version = "0.40.1" }
icp-adapter = { path = "lib/icp-adapter" }
icp-canister = { path = "lib/icp-canister" }
icp-dirs = { path = "lib/icp-dirs" }
icp-fs = { path = "lib/icp-fs" }
icp-identity = { path = "lib/icp-identity", features = ["clap"] }
icp-network = { path = "lib/icp-network" }
icp-project = { path = "lib/icp-project" }
itertools = "0.14.0"
k256 = { version = "0.13.4", features = ["pem", "pkcs8", "std"] }
p256 = { version = "0.13.2", features = ["pem", "pkcs8", "std"] }
pem = "3.0.5"
pkcs8 = { version = "0.10.2", features = ["encryption", "std"] }
pocket-ic = "9.0.0"
rand = "0.9.1"
sec1 = { version = "0.7.3", features = ["pkcs8"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.34"
shellwords = "1.1.0"
snafu = "0.8.5"
strum = { version = "0.27", features = ["derive"] }
tempfile = "3"
time = "0.3.9"
tiny-bip39 = "2.0.0"
tokio = { version = "1.45.0", features = ["macros", "rt-multi-thread"] }
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.lints.rust]
missing_debug_implementations = "warn"
[workspace.lints.clippy]
enum_variant_names = "allow"
[profile.dev.package.scrypt]
opt-level = 3