-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
52 lines (46 loc) · 1.13 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
[workspace]
members = ["mint"]
[package]
name = "mugraph"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mugraph-payments/mugraph"
keywords = ["ecash", "cardano"]
[dependencies]
anyhow = "1.0.91"
argh = "0.1.12"
ark-bls12-381 = "0.5.0"
ark-ec = { version = "0.5.0", features = ["std"] }
ark-ff = "0.5.0"
blake3 = "1.5.4"
curve25519-dalek = { version = "4.1.3", features = ["digest", "rand_core"] }
hex = { version = "0.4.3", features = ["serde"] }
hickory-resolver = { version = "0.24.1", default-features = false, features = [
"dns-over-rustls",
] }
onlyerror = "0.1.4"
plonky2 = "0.2.2"
poseidon-rs = "0.0.10"
proptest = "1.5.0"
rand = { version = "0.8.5", features = ["min_const_gen"] }
redb = "2.1.4"
serde = { version = "1.0.210", features = ["derive"] }
serde_bytes = "0.11.15"
serde_cbor = "0.11.2"
test-strategy = "0.4.0"
[dev-dependencies]
bincode = "1.3.3"
criterion = "0.5.1"
paste = "1.0.15"
rand_chacha = "0.3.1"
sha2 = "0.10.8"
[profile.release]
lto = "fat"
opt-level = 3
[profile.dev.package]
plonky2.opt-level = 3
curve25519-dalek.opt-level = 3
[[bench]]
name = "seal"
harness = false