This commit is contained in:
Pascal Engélibert 2026-02-20 16:02:58 +01:00
commit 610cc4784a
5 changed files with 39 additions and 310 deletions

View file

@ -1,7 +1,15 @@
[package]
name = "gwrizienn"
version = "0.1.0"
authors = ["tuxmain <tuxmain@zettascript.org>"]
edition = "2024"
license = "AGPL-3.0-only"
description = "Easy and fast modular arithmetic, polynomial quotient rings"
categories = ["mathematics", "no-std"]
keywords = ["arithmetic", "polynomial", "ntt", "lattice-crypto"]
homepage = "https://git.zoai.re/tuxmain/gwrizienn"
repository = "https://git.zoai.re/tuxmain/gwrizienn"
documentation = "https://docs.rs/gwrizienn"
[dependencies]
num-traits = "0.2"
@ -9,9 +17,6 @@ rand = { version = "0.8", optional = true }
rand_core = { version = "0.6", optional = true }
zeroize = { version = "1", optional = true, default-features = false }
[dev-dependencies]
rayon = "1.8"
[features]
default = ["rand", "zeroize"]