-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.05 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
[package]
name = "vrf"
version = "0.2.4"
description = "Fast and extensible Verifiable Random Function (VRF) library; currently supporting secp256k1, secp256r1 and sect163k1 curves"
keywords = ["vrf", "ecvrf", "secp256k1", "p256", "k163"]
categories = ["algorithms", "cryptography"]
license = "MIT"
authors = ["Witnet Foundation <[email protected]>"]
edition = "2018"
homepage = "https://github.com/witnet/vrf-rs"
documentation = "https://docs.rs/vrf/"
repository = "https://github.com/witnet/vrf-rs"
readme = "README.md"
exclude = ["/.travis.yml"]
[badges]
travis-ci = { repository = "witnet/vrf-rs", branch = "master" }
[dependencies]
failure = "0.1.8"
openssl = "0.10.38"
hmac-sha256 = "1.1.2"
keccak-hash = "0.9.0"
hex-slice = "0.1.4"
starknet = { git = "https://github.com/xJonathanLEI/starknet-rs" }
url = "2.2.2"
clokwerk = "0.4.0-rc1"
[dev-dependencies]
clap = "2.32.0"
hex = "0.3.2"
serde = { version = "1.0.90", features = ["derive"] }
serde_json = "1.0.39"
tokio = { version = "1.15.0", features = ["full"] }
[features]
vendored = ["openssl/vendored"]