-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (56 loc) · 1.34 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (56 loc) · 1.34 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
64
65
66
[package]
name = "sparrow"
version = "0.1.0"
edition = "2024"
default-run = "sparrow"
description = "State-of-the-art nesting heuristic for 2D irregular strip packing problems"
[[bin]]
name = "sparrow"
path = "src/main.rs"
[[bin]]
name = "bench"
path = "src/bench.rs"
[dependencies]
jagua-rs = { features = ["spp"], version = "0.7.2" }
#jagua-rs = { features = ["spp"], git = "https://github.com/JeroenGar/jagua-rs.git", rev = "06b4915aac55c944d966aaf5c6b472a7fd699c6e"}
#jagua-rs = { features = ["spp"], path = "../jagua-rs/jagua-rs" }
rand = "0.10"
rand_distr = "0.6"
svg = "0.18"
itertools = "0.15"
log = { version = "0.4", features = ["release_max_level_info"] }
fern = "0.7"
serde = "1.0"
serde_json = "1.0"
tap = "1.0"
slotmap = "1.0"
float-cmp = "0.10"
ordered-float = "5.0"
rayon = "1.10"
numfmt = "1.1"
num_cpus = "1.17"
jiff = "0.2"
test-case = "3.3"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
getrandom = { version = "0.4", features = ["wasm_js"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ctrlc = "3.5"
[features]
live_svg = []
only_final_svg = []
simd = []
[profile.dev]
overflow-checks = true
[profile.debug-release]
inherits = "release"
debug-assertions = true
debug = true
[profile.release]
opt-level = 3
lto = "fat"
[profile.test]
opt-level = 3
debug-assertions = true
overflow-checks = true
debug = true