-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (37 loc) · 1.25 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
[package]
name = "bls12_381-bls"
version = "0.4.1"
edition = "2021"
readme = "README.md"
repository = "https://github.com/dusk-network/bls12_381-bls"
description = "Implementation of BLS signatures using the BLS12-381 curve"
keywords = ["cryptography", "bls", "bls12_381", "signatures"]
categories =["algorithms", "cryptography", "mathematics"]
exclude = [
".gitignore",
"Cargo.lock",
".github/"
]
license = "MPL-2.0"
[dependencies]
dusk-bls12_381 = { version = "0.13", default-features = false, features = ["alloc", "pairings", "zeroize"] }
dusk-bytes = "0.1"
rand_core = { version = "0.6", default-features = false }
ff = { version = "0.13", default-features = false }
zeroize = { version = "1", default-features = false, features = ["derive"] }
rkyv = { version = "0.7", optional = true, default-features = false }
bytecheck = { version = "0.6", optional = true, default-features = false }
rayon = { version = "1.8", optional = true }
serde = { version = "1.0", optional = true }
bs58 = { version = "0.4" , optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
rand = "0.8"
[features]
rkyv-impl = [
"dusk-bls12_381/rkyv-impl",
"rkyv",
"bytecheck",
]
parallel = ["dep:rayon"]
serde = ["dep:serde", "bs58", "serde_json"]