-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (40 loc) · 1.28 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
[package]
name = "signature_bls"
version = "1.0.0"
authors = ["Michael Lodder <redmike7@gmail.com>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/cryptidtech/signature_bls"
repository = "https://github.com/cryptidtech/signature_bls"
readme = "README.md"
categories = [
"cryptography",
"asynchronous",
"authentication",
"no-std",
"algorithms",
]
keywords = ["crypto", "signature", "signing", "bls"]
description = """The Cryptid BLS signature impementation."""
[features]
default = ["std"]
alloc = []
std = ["alloc", "iso8601-timestamp"]
[dependencies]
bls12_381_plus = "0.5.5"
ff = { version = "0.12", default-features = false }
group = "0.12"
hex = { version = "0.4", default-features = false }
hkdf = { version = "0.11", default-features = false }
iso8601-timestamp = { version = "0.2.10", optional = true }
pairing = "0.22"
rand_core = "0.6"
serde = { version = "1.0", default-features = false, features = ["derive"] }
sha2 = { version = "0.9", default-features = false }
subtle = { version = "2.4", default-features = false }
vsss-rs = { version = "2.7.0", default-features = false, features = ["elliptic-curve"] }
zeroize = { version = "1.5", features = ["zeroize_derive"] }
[dev-dependencies]
rand_xorshift = "0.3"
serde_bare = "0.5"
serde_json = "1.0"