-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (30 loc) · 953 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
31
32
33
34
35
[package]
name = "bn254"
version = "0.0.1"
description = "Open source implementation of Barreto-Naehrig (BN) aggregate signatures written in Rust"
keywords = ["bn254", "bn", "bn256", "bn128", "bls"]
categories = ["cryptography", "crypto", "algorithms"]
license = "MIT"
edition = "2021"
homepage = "https://github.com/sedaprotocol/bn254"
documentation = "https://docs.rs/bn254/"
repository = "https://github.com/sedaprotocol/bn254"
readme = "README.md"
[features]
default = []
serde = []
[package.metadata.docs.rs]
features = ["serde"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bn = { package = "zeropool-bn", features = [], version = "0.5.11" }
borsh = "0.9"
byteorder = "1.4"
hex = "0.4"
rand = { version = "0.8", default-features = false }
serde = { version = "1.0", optional = false }
sha2 = "0.10"
thiserror = "1.0"
[dev-dependencies]
rand = { version = "0.8", default-features = false, features = ["getrandom"] }
serde_json = "1.0.94"