[package]
edition = "2024"
rust-version = "1.87"
name = "qfall-math"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mathematical foundations for rapid prototyping of lattice-based cryptography"
homepage = "https://qfall.github.io"
readme = "README.md"
keywords = [
"math",
"prototype",
"lattice",
"cryptography",
]
categories = [
"cryptography",
"mathematics",
"development-tools::build-utils",
"development-tools::testing",
"development-tools::profiling",
]
license = "MPL-2.0"
repository = "https://github.com/qfall/math"
[lib]
name = "qfall_math"
path = "src/lib.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dependencies.derive_more]
version = "2.1"
features = ["display"]
[dependencies.flint-sys]
version = "0.7"
[dependencies.lazy_static]
version = "1"
[dependencies.libc]
version = "0"
[dependencies.paste]
version = "1"
[dependencies.probability]
version = "0.20"
[dependencies.rand]
version = "0.10"
[dependencies.rand_distr]
version = "0.6"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.string-builder]
version = "0.2"
[dependencies.thiserror]
version = "2"
[profile.bench]
debug = 2