vrf-contract-verifier 0.8.4

Minimal VRF proof verification for smart contracts
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vrf-contract-verifier"
version = "0.8.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal VRF proof verification for smart contracts"
readme = "README.md"
license = "Apache-2.0"

[features]
default = []
near = [
    "dep:near-sdk",
    "dep:borsh",
]

[lib]
name = "vrf_contract_verifier"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[dependencies.bincode]
version = "1.3"

[dependencies.borsh]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.curve25519-dalek-ng]
version = "4.1.1"
features = [
    "u32_backend",
    "alloc",
]
default-features = false

[dependencies.elliptic-curve]
version = "0.13"
features = ["hash2curve"]
default-features = false

[dependencies.near-sdk]
version = "5.13"
features = ["unit-testing"]
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.sha2]
version = "0.10"
default-features = false

[dev-dependencies]