-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
61 lines (57 loc) · 1.46 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
[package]
name = "diode"
version = "2.1.1"
edition = "2024"
license = "GPL-3.0"
[workspace]
members = [".", "diode-file-bindings"]
[dependencies]
clap = { version = "4", default-features = false, features = [
"color",
"derive",
"error-context",
"help",
"std",
"suggestions",
"usage",
] }
core_affinity = { version = "0", default-features = false }
crossbeam-channel = { version = "0", default-features = false, features = [
"std",
] }
crossbeam-utils = { version = "0", default-features = false, features = [
"std",
] }
fasthash = { version = "0", default-features = false, features = [
"sse42",
"aes",
"avx",
"avx2",
] }
libc = { version = "0", default-features = false, features = ["std"] }
log = { version = "0", default-features = false, features = ["std"] }
rand = { version = "0", default-features = false, features = [
"std",
"std_rng",
"thread_rng",
] }
raptorq = { version = "2", default-features = false, features = ["std"] }
semka = { version = "2", default-features = false, features = [] }
simplelog = { version = "0", default-features = false, features = [
"termcolor",
"local-offset",
] }
[profile.release]
opt-level = 3
lto = true
debug = false
strip = true
panic = "abort"
codegen-units = 1
[lints.clippy]
pedantic = { level = "deny", priority = -1 }
must_use_candidate = "allow"
enum-glob-use = "allow"
missing-errors-doc = "allow"
nursery = { level = "deny", priority = -1 }
or_fun_call = "allow"