forked from matter-labs/franklin-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 1.03 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
[package]
authors = ["Sean Bowe <[email protected]>", "Alex Vlasov <[email protected]>", "Alex Gluchowski <[email protected]>"]
description = "Cryptographic library for SNARK gadgets"
homepage = "https://github.com/matter-labs/franklin-crypto"
license = "MIT/Apache-2.0"
name = "franklin-crypto"
version = "0.0.5"
[lib]
crate-type = ["lib", "staticlib"]
[features]
default = []
multicore = ["bellman/multicore"]
plonk = ["bellman/plonk"]
[dependencies]
rand = "0.4"
digest = "0.7"
byteorder = "1"
serde = { version = "1.0", features = ["derive"] }
tiny-keccak = "1.4.2"
bit-vec = "0.6"
sha2 = "0.8.0"
hmac = "0.7.1"
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
itertools = "0.9"
splitmut = "0.2"
blake2 = "0.9"
bellman = { package = "bellman_ce", git = "https://github.com/matter-labs/bellman", default_features = false, branch = "beta" }
blake2-rfc_bellman_edition = "0.0.1"
poseidon_hash = { git = "https://github.com/Fluidex/poseidon_hash.git" }
blake2s_simd = { version = "0.5" }
hex = "0.4"
[dev-dependencies]
hex-literal = "0.1"