-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (22 loc) · 918 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
[package]
name = "vrf-rs"
version = "0.0.0"
edition = "2021"
authors = ["SEDA <info@seda.xyz>"]
homepage = "https://github.com/sedaprotocol/vrf-rs"
description = "Fast and extensible Elliptic Curve Verifiable Random Function (VRF) library; currently supporting secp256k1 and secp256r1 curves"
keywords = ["vrf", "ecvrf", "secp256k1", "p256"]
categories = ["algorithms", "cryptography"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
elliptic-curve = { version = "0.13", default-features = false, features = ["sec1"]}
p256 = { version = "0.13", default-features = false, features = ["expose-field", "hash2curve"] }
k256 = { version = "0.13", default-features = false, features = ["expose-field", "hash2curve"] }
thiserror = "1.0"
sha2 = "0.10"
rfc6979 = "0.4"
[dev-dependencies]
hex = "0.4.3"
hex-literal = "0.4"
serde_json = "1.0.108"