forked from leanEthereum/leanSig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (54 loc) · 1.77 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (54 loc) · 1.77 KB
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
61
62
63
[package]
name = "leansig"
version = "0.1.0"
edition = "2024"
rust-version = "1.87"
[lints.clippy]
# all lints that are on by default (correctness, suspicious, style, complexity, perf)
all = { level = "warn", priority = -1 }
# new lints that are still under development
nursery = { level = "warn", priority = -1 }
# avoid lints that are too pedantic
doc_markdown = "allow"
# lints which are rather strict or have occasional false positives
pedantic = { level = "warn", priority = -1 }
# avoid lints that are too pedantic
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
many_single_char_names = "allow"
should_panic_without_expect = "allow"
similar_names = "allow"
suboptimal_flops = "allow"
cast_sign_loss = "allow"
cast_lossless = "allow"
uninlined_format_args = "allow"
upper_case_acronyms = "allow"
[dependencies]
rand = "0.9"
sha3 = "0.10.8"
num-bigint = "0.4.6"
rayon = "1.10.0"
num-traits = "0.2.19"
dashmap = "6.1.0"
serde = { version = "1.0", features = ["derive", "alloc"] }
thiserror = "2.0"
ssz = { package = "ethereum_ssz", version = "0.10.0" }
ssz_derive = { package = "ethereum_ssz_derive", version = "0.10.0" }
p3-field = { git = "https://github.com/Plonky3/Plonky3.git", rev = "a33a312" }
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3.git", rev = "a33a312" }
p3-koala-bear = { git = "https://github.com/Plonky3/Plonky3.git", rev = "a33a312" }
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "a33a312" }
[dev-dependencies]
criterion = "0.7"
proptest = "1.7"
bincode = { version = "2.0.1", features = ["serde"] }
[features]
slow-tests = []
with-gen-benches-sha = []
with-gen-benches-poseidon = []
with-gen-benches-poseidon-top-level = []
[[bench]]
name = "benchmark"
harness = false