mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
`gen` is reserved keyword in 2024. So modigied `galois_element` function in base2k/src/module.rs for compat
18 lines
358 B
TOML
18 lines
358 B
TOML
[package]
|
|
name = "base2k"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
rug = {workspace = true}
|
|
criterion = {workspace = true}
|
|
itertools = {workspace = true}
|
|
rand = {workspace = true}
|
|
rand_distr = {workspace = true}
|
|
rand_core = {workspace = true}
|
|
sampling = { path = "../sampling" }
|
|
utils = { path = "../utils" }
|
|
|
|
[[bench]]
|
|
name = "fft"
|
|
harness = false |