forked from zama-ai/concrete-ntt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 877 Bytes
/
Cargo.toml
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
37
38
39
[package]
name = "concrete-ntt"
version = "0.1.2"
edition = "2021"
description = "Concrete-NTT is a pure Rust high performance number theoretic transform library."
readme = "README.md"
repository = "https://github.com/zama-ai/concrete-ntt"
license = "BSD-3-Clause-Clear"
homepage = "https://zama.ai/"
keywords = ["ntt"]
rust-version = "1.67"
[dependencies]
aligned-vec = { version = "0.5", default-features = false }
pulp = { version = "0.18.8", default-features = false }
cxx = "1.0"
[features]
default = ["std"]
std = ["pulp/std", "aligned-vec/std"]
nightly = ["pulp/nightly"]
[dev-dependencies]
criterion = "0.4"
rand = "0.8"
serde = "1.0.163"
serde_json = "1.0.96"
[[bench]]
name = "ntt"
harness = false
[build-dependencies]
cxx-build = "1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--html-in-header", "katex-header.html", "--cfg", "docsrs"]