[package]
edition = "2021"
rust-version = "1.70"
name = "rune-ring"
version = "0.1.0"
authors = ["Naufal Ziyaadaturrahman <naufal@aleshnatt.com>"]
build = false
exclude = [
".github/",
".DS_Store",
"/Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust ring signature library built with lattice-based polynomial arithmetic"
homepage = "https://github.com/aleshnatt/rune"
documentation = "https://docs.rs/rune-ring"
readme = "README.md"
keywords = [
"cryptography",
"signature",
"ring-signature",
"lattice",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aleshnatt/rune"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "rune_ring"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.sha3]
version = "0.10"
[dependencies.zeroize]
version = "1.7"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"