-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 992 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "qfall-math"
version = "0.1.1"
edition = "2024"
rust-version = "1.87" # due to wit_bindgen dependency
description = "Mathematical foundations for rapid prototyping of lattice-based cryptography"
readme = "README.md"
homepage = "https://qfall.github.io"
repository = "https://github.com/qfall/math"
license = "MPL-2.0"
keywords = ["math", "prototype", "lattice", "cryptography"]
categories = ["cryptography", "mathematics", "development-tools::build-utils", "development-tools::testing", "development-tools::profiling"]
autobenches = false
[dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
flint-sys = "0.7"
libc = "0"
paste = "1"
rand = "0.10"
rand_distr = "0.6"
regex = "1"
serde = {version="1", features=["derive"]}
serde_json = "1"
string-builder = "0.2"
thiserror = "2"
lazy_static = "1"
probability = "0.20"
derive_more = { version = "2.1", features = ["display"] }
[profile.bench]
debug = true
[[bench]]
name = "benchmarks"
harness = false