Files
poulpy/backend/Cargo.toml
Jean-Philippe Bossuat 3a828740cc Traits cleaning, CBT example & bug fixes (#72)
* Some cleaning, CBT example, fix mod switch and add LUT correctness test to BR test

* finished trait cleaning

* removed trait aliastoutside of backend
2025-08-16 18:23:22 +02:00

22 lines
486 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
[dependencies]
rug = {workspace = true}
criterion = {workspace = true}
itertools = {workspace = true}
rand = {workspace = true}
rand_distr = {workspace = true}
rand_core = {workspace = true}
sampling = { path = "../sampling" }
byteorder = {workspace = true}
[build-dependencies]
cmake = "0.1.54"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]