[package] name = "vrf-r255" description = "A Verifiable Random Function built on the ristretto255 group" version = "0.1.0" authors = ["Jack Grigg "] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.60" repository = "https://github.com/str4d/vrf-r255" keywords = ["curve25519", "ristretto255", "rfc9381", "rfc9496"] categories = ["cryptography"] [dependencies] curve25519-dalek = { version = "4", features = ["rand_core"] } rand_core = "0.6" sha2 = "0.10" subtle = "2.4" [dev-dependencies] criterion = "0.4" hex = "0.4" rand_core = { version = "0.6", features = ["getrandom"] } [[bench]] name = "benchmarks" harness = false