-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 833 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (33 loc) · 833 Bytes
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
[workspace]
resolver = "3"
members = [
"crates/lkh",
"crates/lkh_derive",
"crates/tsp_mt_core",
"crates/tsp_mt_derive",
]
[package]
name = "tsp-mt"
version = "0.1.1"
edition = "2024"
description = "Multi-threaded TSP solver for lat/lng coordinates using LKH and H3 chunking"
license = "Apache-2.0"
readme = "README.md"
keywords = ["tsp", "routing", "geo", "lkh", "h3"]
categories = ["algorithms", "command-line-utilities"]
[dependencies]
log = "0.4.29"
tsp_mt_core = { path = "crates/tsp_mt_core" }
tsp_mt_derive = { path = "crates/tsp_mt_derive" }
[features]
default = []
fetch-lkh = ["tsp_mt_core/fetch-lkh"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true