-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
67 lines (61 loc) · 1.63 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
[workspace]
members = [
"build_canister",
"canfuzz",
"canisters/rust/decode_candid",
"canisters/rust/ledger",
"canisters/rust/stable_memory",
"canisters/rust/transfer",
"examples/decode_candid_by_instructions",
"examples/motoko_diff",
"examples/motoko_shim",
"examples/stable_memory_ops",
"examples/trap_after_await",
"examples/rusqlite_fuzz",
]
exclude = [
"canisters/rust/rusqlite_db",
]
resolver = "2"
[workspace.package]
version = "0.6.0"
edition = "2024"
authors = ["DFINITY Stiftung <product-security@dfinity.org>"]
license = "Apache-2.0"
[workspace.dependencies]
anyhow = "1.0.75"
arbitrary = { version = "1.4.1", features = ["derive"] }
candid = { version = "0.10.24", features = ["all"] }
candid_parser = { version = "0.3.0", features = ["random"] }
chrono = "0.4.41"
ic-cdk = "0.20.0"
ic-cdk-macros = "0.20.0"
ic-management-canister-types = "0.7.1"
ic-stable-structures = "0.7.2"
k256 = { version = "0.13", features = ["ecdsa-core"] }
once_cell = "1.21.3"
pocket-ic = "12.0.0"
rand = "0.9.2"
rand_core = "0.9.3"
serde = "1.0.219"
serde_bytes = "0.11.17"
serde_cbor = "0.11.2"
sha2 = "0.10.9"
slog = "2.7.0"
wat = "1.242.0"
wasmprinter = "0.242.0"
assert_matches = "1.5.0"
difference = "2.0.0"
ic-dummy-getrandom-for-wasm = "0.1.0"
num-traits = "0.2"
num-bigint = "0.4"
naughty-strings = "0.2.4"
quote = "1.0"
syn = "2.0"
proc-macro2 = "1.0"
# pinned deps
ctrlc = "3.4"
libafl = { version = "=0.15.4", features = ["std"] }
libafl_bolts = {version = "=0.15.4", features = ["rand_trait"] }
wirm = { version = "=2.2.0", features = ["parallel"] }
ic-rusqlite = { version = "0.4", features = ["precompiled"] }