-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (23 loc) · 926 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
[package]
name = "ark-transcript"
description = "Arkworks friendly transcripts for proofs using Fiat-Shamir"
authors = ["Jeff Burdges <[email protected]>"]
version = "0.0.2"
repository = "https://github.com/w3f/ark-transcript"
edition = "2021"
license = "MIT/Apache-2.0"
keywords = ["cryptography", "sha3", "shake", "hash", "transcript"]
[dependencies]
rand_core = { version = "0.6", default-features = false }
digest = { version = "0.10", default-features = false }
sha3 = { version = "0.10", default-features = false }
ark-std = { version = "0.4", default-features = false }
ark-ff = { version = "0.4", default-features = false }
ark-serialize = { version = "0.4", default-features = false }
[dev-dependencies]
ark-ed25519 = { version = "0.4", default-features = false }
[features]
default = [] # "getrandom", "std", "rand"
std = [] # "getrandom"
debug-transcript = ["std"]
# getrandom = ["rand_core/getrandom"]