-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (45 loc) · 1.61 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
[package]
name = "lsm"
version = "0.1.0"
edition = "2021"
[dependencies]
candid = "0.10.6"
ic0 = "0.21.1"
ic-canister-log = "0.2.0"
ic-cdk = "0.13.5"
ic-cbor = "2.6.0"
ic-cdk-macros = "0.9.0"
ic-cdk-timers = "0.7.0"
ic-stable-structures="0.6.5"
ic-crypto-sha2={ git = "https://github.com/dfinity/ic.git"}
ic-management-canister-types = { git = "https://github.com/dfinity/ic.git" }
ic-crypto-secp256k1 = { git = "https://github.com/dfinity/ic.git" }
ic-utils-ensure = { git = "https://github.com/dfinity/ic.git" }
ic-icrc1-index-ng = { git = "https://github.com/dfinity/ic.git"}
ic-ethereum-types = { git = "https://github.com/dfinity/ic.git"}
icrc-ledger-types = { git = "https://github.com/dfinity/ic.git"}
ic-base-types={ git = "https://github.com/dfinity/ic.git"}
ic-icrc1-ledger={ git = "https://github.com/dfinity/ic.git"}
ic-ledger-types = "0.13.0"
ciborium = "0.2.1"
hex = { version = "0.4.3", features = ["serde"] }
num-traits="0.2.19"
serde = { version = "1.0.203", features = ["derive"] }
serde_bytes = "0.11.15"
serde_cbor = "0.11.2"
serde_json = { version = "^1.0.107" }
scopeguard = "1.1.0"
futures = "0.3.30"
async-trait = "0.1.81"
[dev-dependencies]
assert_matches = "1.5.0"
maplit = "1"
mockall ="0.13.0"
paste = "1.0.12"
proptest = "1.5.0"
scraper = "0.17.1"
tokio = { version = "1.40.0", features = ["full"] }
[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", features = ["custom"] }
[target.'cfg(not(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown")))'.dependencies]
getrandom = { version = "0.2" }