-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
88 lines (85 loc) · 2.08 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"ic-auction",
"ic-canister/ic-canister-macros",
"ic-canister/ic-canister",
"ic-canister/tests/canister-a",
"ic-canister/tests/canister-b",
"ic-canister/tests/canister-c",
"ic-canister/tests/canister-d",
"ic-canister/tests/canister-e",
"ic-canister-client",
"ic-exports",
"ic-crypto-getrandom-for-wasm",
"ic-helpers",
"ic-kit",
"ic-log",
"ic-metrics",
"ic-payments",
"ic-payments/test-payment-canister",
"ic-stable-structures",
"ic-stable-structures/tests/did",
"ic-stable-structures/tests/dummy_canister",
"ic-storage",
"ic-storage/ic-storage-derive",
"ic-task-scheduler",
"ic-task-scheduler/tests/dummy_scheduler_canister",
"ic-test-utils",
]
[workspace.package]
version = "0.22.0"
edition = "2021"
[workspace.dependencies]
anyhow = "1"
arc-swap = "1.6"
async-recursion = "1.0.2"
async-trait = "0.1"
auto_ops = "0.3"
bincode = "1.3"
cfg-if = "1.0"
criterion = "0.5.1"
crypto-bigint = { version = "0.5", features = ["serde"] }
dirs = "5.0"
env_filter = "0.1.1"
flate2 = "1"
futures = { version = "0.3", default-features = false }
garcon = "0.2"
getrandom = { version = "0.2", features = ["custom"] }
hex = "0.4"
humantime = "2.1"
k256 = "0.13"
lazy_static = "1"
log = "0.4"
memmap2 = { version = "0.9" }
num-bigint = "0.4"
num-traits = "0.2"
once_cell = "1.18"
parking_lot = "0.12"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.8"
reqwest = { version = "0.12", default-features = false }
ringbuffer = "0.15"
schnellru = { version = "0.2", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11.2"
serde_json = "1.0"
serde_tokenstream = "0.2"
sha2 = "0.10"
syn = "2.0"
tempfile = "3.6"
thiserror = "1.0"
tokio = "1.0"
trybuild = "1.0"
# IC dependencies
candid = "0.10"
dfinity-stable-structures = { package = "ic-stable-structures", version = "0.6" }
ic-agent = { version = "0.37" }
ic-cdk = "0.16"
ic-cdk-macros = "0.16"
ic-cdk-timers = "0.10"
ic-ledger-types = "0.13"
ic-test-state-machine-client = "3"
icrc-ledger-types = "0.1.0"
pocket-ic = "4"