-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.06 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
[package]
name = "chainkey_testing_canister"
version = "0.1.0"
edition = "2021"
resolver = "2"
[profile.release]
lto = true
opt-level = 'z'
panic = 'abort'
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
candid = "0.10.10"
# Enable `custom` feature of indirect getrandom dependency. See lib.rs for more details.
getrandom = { version = "0.2", features = ["custom"] }
hex = "0.4"
ic-cdk = "0.16.0"
ic-cdk-timers = "0.10.0"
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic" }
ic-crypto-secp256k1 = { git = "https://github.com/dfinity/ic" }
ic-crypto-internal-bls12-381-vetkd = { git = "https://github.com/dfinity/ic" }
ic-crypto-internal-bls12-381-type = { git = "https://github.com/dfinity/ic" }
ic-stable-structures = "0.6.5"
lazy_static = "1.4"
rand = "0.8"
rand_chacha = "0.3"
serde = "1"
serde_bytes = "0.11.15"
[dev-dependencies]
assert_matches = "1.5.0"
bitcoin = "0.32.5"
ed25519-dalek = "2.1"
ic-vetkd-utils = { git = "https://github.com/dfinity/ic" }
k256 = "0.13.4"
pocket-ic = "6.0.0"
secp256k1 = { version = "0.30.0", features = ["global-context"] }