forked from GMAP/NPB-Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.15 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
[package]
name = "npb-rust-ser"
version = "0.1.0"
edition = "2024"
[profile.release]
opt-level = 3
debug = false
strip = true
codegen-units = 1
lto = "fat"
panic = "abort"
[[bin]]
name = "bt"
path = "src/bt.rs"
[[bin]]
name = "ep"
path = "src/ep.rs"
[[bin]]
name = "cg"
path = "src/cg.rs"
[[bin]]
name = "ft"
path = "src/ft.rs"
[[bin]]
name = "is"
path = "src/is.rs"
[[bin]]
name = "lu"
path = "src/lu.rs"
[[bin]]
name = "mg"
path = "src/mg.rs"
[[bin]]
name = "sp"
path = "src/sp.rs"
[dependencies]
rayon = "1.10"
platform-aware = { path = "../../platform-aware"}
platform-aware-features = { path = "../../platform-aware/platform-aware-features"}
platform-aware-amd = { path = "../../platform-aware/platform-aware-amd"}
platform-aware-intel = { path = "../../platform-aware/platform-aware-intel"}
platform-aware-nvidia = { path = "../../platform-aware/platform-aware-nvidia"}
lazy_static = "1.5.0"
[lints.rust]
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(class,values("S","W","A","B","C","D","E","F"))','cfg(safe,values("true"))','cfg(timers,values("true"))']}