mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
* Some cleaning, CBT example, fix mod switch and add LUT correctness test to BR test * finished trait cleaning * removed trait aliastoutside of backend
22 lines
486 B
TOML
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"] |