-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (55 loc) · 1.36 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
61
62
63
64
65
[workspace]
members = [
"curvature",
"curvature-procedural-macro",
"data-block",
"data-block-benches",
]
default-members = ["curvature", "data-block", "curvature-procedural-macro"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Yjy"]
[workspace.dependencies]
snafu = "0.8"
paste = "1.0.15"
libc = "0.2"
regex = "1.10"
quanta = "0.12"
uuid = "1.9"
rayon = "1.10"
tracing = "0.1"
strength_reduce = "0.2"
num-traits = "0.2"
parking_lot = "0.12"
bumpalo = "3.16"
# TBD: Should we specify the ahash to "=version"? Otherwise, different binaries compiled
# in different time will create different hash value. The distributed engine will have bug
ahash = "0.8"
hashbrown = { version = "0.14" }
tabled = "0.15"
tracing-subscriber = "0.3.18"
data-block = { path = "data-block", default-features = false }
curvature-procedural-macro = { path = "curvature-procedural-macro" }
crossbeam-utils = "0.8"
[profile.release]
lto = "fat"
opt-level = 3
debug = true
codegen-units = 1
[profile.bench]
debug = true
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"
bare_urls = "deny"
private_intra_doc_links = "deny"
[workspace.lints.rust]
missing_docs = "deny"
missing_debug_implementations = "deny"
single_use_lifetimes = "warn"
unreachable_pub = "warn"
[workspace.lints.clippy]
todo = "warn"
needless_borrow = "deny"
redundant_clone = "deny"