forked from domwoe/schnorr_canister
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 955 Bytes
/
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
[package]
name = "schnorr_canister"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "schnorr_canister"
crate-type = ["lib", "cdylib"]
[dependencies]
bip32 = { version = "0.5.1", features = ["k256"] }
candid = "0.10.6"
ic-cdk = "0.13.1"
ic-cdk-timers = "0.7.0"
ic-crypto-extended-bip32 = { git = "https://github.com/dfinity/ic/", tag = "release-2024-03-27_23-01-p2p-ecdsa-fix" }
ic-stable-structures = "0.6"
getrandom = { version = "0.2.12", features = ["custom"] }
k256 = { git = "https://github.com/altkdf/elliptic-curves", branch = "schnorr_canister", features = ["schnorr"] }
serde = "1"
serde_bytes = "0.11.14"
serde_json = "1.0.115"
ed25519-dalek = "2.1.1"
hmac-sha512 = "1.1.5"
[dev-dependencies]
secp256k1 = { version = "0.29.0", features = ["global-context"] }
pocket-ic = "3.1.0"
flate2 = "1.0"
[profile.release]
opt-level = "s"