forked from LF-Decentralized-Trust-labs/agora-blsful
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.47 KB
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
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
categories = [
"cryptography",
"authentication",
"no-std",
"algorithms",
]
description = """BLS signature implementation according to the IETF spec on the BLS12-381 curve."""
documentation = "https://docs.rs/blsful"
edition = "2021"
homepage = "https://github.com/mikelodder7/blsful"
keywords = ["crypto", "signature", "signing", "bls"]
license = "MIT OR Apache-2.0"
name = "blsful"
readme = "README.md"
repository = "https://github.com/mikelodder7/blsful"
version = "3.0.0"
[features]
default = ["blst"]
rust = ["bls12_381_plus/alloc"]
blst = ["blstrs_plus"]
[dependencies]
anyhow = "1.0"
bls12_381_plus = { version = "0.8", optional = true }
blstrs_plus = { version = "0.8", optional = true}
hex = "0.4"
hkdf = { version = "0.12", default-features = false }
merlin = "3"
pairing = "0.23"
rand = "0.8"
rand_core = "0.6"
rand_chacha = "0.3"
serde = { version = "1.0", features = ["alloc", "derive"] }
serde_bare = "0.5"
sha2 = { version = "0.10", default-features = false }
sha3 = { version = "0.10", default-features = false }
subtle = { version = "2.6", default-features = false }
thiserror = "2.0"
uint-zigzag = { version = "0.2", features = ["std"] }
vsss-rs = { git = "https://github.com/dashpay/vsss-rs", branch = "main", features = ["serde"] }
zeroize = { version = "1", features = ["zeroize_derive"] }
[dev-dependencies]
rstest = "0.23"
rand_xorshift = "0.3"
serde_json = { version = "1.0", features = ["alloc"] }