[package]
edition = "2024"
name = "simple-ring"
version = "0.2.0"
authors = ["Olruix (VRAM-RAM)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Educational implementation of polynomial rings, NTT, and coefficient sampling for lattice-based cryptography"
documentation = "https://docs.rs/simple-ring"
readme = "README.md"
keywords = [
"cryptography",
"ntt",
"polynomial",
"ring",
"educational",
]
categories = [
"cryptography",
"mathematics",
]
license = "CECILL-B OR Apache-2.0"
resolver = "2"
[features]
parallel = ["dep:rayon"]
[lib]
name = "simple_ring"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1.16"
[dependencies.postcard]
version = "1.1.3"
[dependencies.rand]
version = "0.8.0"
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.serde]
version = "1.0.228"
[dependencies.shake]
version = "0.1.0"