-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (46 loc) · 1.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "ff_12381"
version = "0.1.0"
authors = ["eschorn@integritychain.com <eschorn@integritychain.com>"]
edition = "2018"
build = "src/build.rs"
license = "bsd-3-clause"
repository = "https://github.com/eschorn1/ff_12381"
readme = "README.md"
keywords = ["cryptography", "elliptic", "BLS12-381"]
categories = ["cryptography"]
description = "Montgomery multiplication demonstrator"
[dependencies]
[build-dependencies]
cc = "1.0.67"
[dev-dependencies]
rand = "0.8.3"
num-bigint = "0.4.0"
num-traits = "0.2.14"
criterion = {version = "0.3.4", features = ["html_reports"] }
lazy_static = "1.4.0"
[profile.release]
debug = 2
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
[profile.test]
debug = 2
debug-assertions = true
incremental = false
lto = true
opt-level = 3
overflow-checks = true
[[bench]]
path = "src/bench.rs"
name = "field_arithmetic"
harness = false
[profile.bench]
debug = 2
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false