-
Notifications
You must be signed in to change notification settings - Fork 73
/
Cargo.toml
55 lines (46 loc) · 1.5 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
[workspace]
resolver = "2"
members = [
"rosomaxa",
"vrp-core",
"vrp-cli",
"vrp-pragmatic",
"vrp-scientific",
"examples/json-pragmatic",
"experiments/heuristic-research"
]
[workspace.package]
version = "1.25.0"
authors = ["Ilya Builuk <[email protected]>"]
license = "Apache-2.0"
keywords = ["vrp", "optimization"]
categories = ["algorithms", "science"]
readme = "README.md"
homepage = "https://github.com/reinterpretcat/vrp"
repository = "https://github.com/reinterpretcat/vrp"
edition = "2021"
[workspace.dependencies]
# internal dependencies
rosomaxa = { path = "rosomaxa", version = "0.9.0" }
vrp-core = { path = "vrp-core", version = "1.25.0" }
vrp-scientific = { path = "vrp-scientific", version = "1.25.0" }
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.25.0" }
vrp-cli = { path = "vrp-cli", version = "1.25.0" }
# external dependencies
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.10.0"
rustc-hash = "2.0.0"
paste = "1.0.15"
lazy_static = "1.5.0"
# dev dependencies
criterion = "0.5.1"
[profile.release]
lto = "fat" # enables "fat" LTO, for faster release builds
codegen-units = 1 # makes sure that all code is compiled together, for LTO
[profile.test]
opt-level = 1 # enables thin local LTO and some optimizations.
[profile.bench]
lto = "fat" # enables "fat" LTO, for faster becnhmark builds
codegen-units = 1 # makes sure that all code is compiled together, for LTO