-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 910 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
[package]
name = "qfall-tools"
version = "0.1.0"
edition = "2024"
rust-version = "1.87" # due to wit_bindgen dependency
description = "Common sub-modules and procedures in lattice-based constructions"
readme = "README.md"
homepage = "https://qfall.github.io"
repository = "https://github.com/qfall/tools"
license = "MPL-2.0"
keywords = ["prototype", "lattice", "cryptography"]
categories = ["cryptography", "mathematics", "development-tools::build-utils", "development-tools::testing", "development-tools::profiling"]
autobenches = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
qfall-math = "0"
flint-sys = "0.7"
sha2 = "0"
serde = {version="1", features=["derive"]}
serde_json = "1"
typetag = "0"
criterion = { version = "0.8", features = ["html_reports"] }
[profile.bench]
debug = true
[[bench]]
name = "benchmarks"
harness = false