forked from shipstone-labs/vetkd-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 868 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
35
36
[workspace]
resolver = "2"
members = [
"packages/vetkd-notes-canister",
]
[workspace.package]
edition = "2021"
authors = ["richtera"]
description = "vetkd utils"
documentation = "Utilities to use vetkd to store encrypted notes"
repository = "https://github.com/shipstone-labs/vetkd-utils"
license = "MIT"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
[workspace.dependencies]
hex = { version = "0.4.3", features = ["serde"] }
ic_bls12_381 = { version = "0.10.0", default-features = false, features = [
"groups",
"pairings",
"alloc",
"experimental",
"zeroize",
] }
lazy_static = "1.5.0"
pairing = "0.23"
sha2 = "0.10.8"
sha3 = "0.10.8"
subtle = "2.6.1"
rand = { version = "0.9.0", features = ["small_rng"] }
rand_chacha = "0.9.0"
zeroize = { version = "1.8.1", features = ["zeroize_derive"] }