-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = [
"secp256kfun",
"schnorr_fun",
"ecdsa_fun",
"sigma_fun",
"arithmetic_macros",
"vrf_fun"
]
resolver = "2"
[workspace.dependencies]
# External dependencies
bincode = { version = "2", default-features = false, features = ["derive"] }
rand_chacha = { version = "0.3", default-features = false }
# Local crates
secp256kfun = { path = "./secp256kfun", version = "0.12", default-features = false }
schnorr_fun = { path = "./schnorr_fun", version = "0.12", default-features = false }
ecdsa_fun = { path = "./ecdsa_fun", version = "0.12", default-features = false }
sigma_fun = { path = "./sigma_fun", version = "0.9", default-features = false }
vrf_fun = { path = "./vrf_fun", version = "0.12", default-features = false }