-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (54 loc) · 1.68 KB
/
Cargo.toml
File metadata and controls
72 lines (54 loc) · 1.68 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
67
68
69
70
71
72
[package]
edition = "2021"
name = "bevy_dutch_road_highway_node_network"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { workspace = true, features = [] }
bevy_egui = { workspace = true }
bevy_polyline = { workspace = true }
highway = { workspace = true }
bincode = { workspace = true }
graph = { workspace = true }
bevy_shapefile = { workspace = true }
rusqlite.workspace = true
serde = { workspace = true }
zstd = { workspace = true }
futures-lite = { workspace = true }
rayon = { workspace = true }
anyhow = {workspace = true}
[dev-dependencies]
criterion = { workspace = true }
[[bench]]
harness = false
name = "phase_1_benchmark"
[profile.dev.package.bevy_shapefile]
opt-level = 3
[profile.dev.package.bevy]
opt-level = 3
[workspace]
members = [
"components/bevy_shapefile",
"components/graph",
"components/highway"
]
[workspace.dependencies]
criterion = "0.8.2"
bevy = { version = "0.18", features = ["wayland"] }
bevy_egui = "0.39"
# bevy_polyline = { git = "https://github.com/fslabs/bevy_polyline.git" }
bevy_polyline = { git = "https://github.com/m-edlund/bevy_polyline.git", rev = "db80b88daf62b35aada0f1fa97b02cca26c493d4" }
bevy_shapefile = { path = "./components/bevy_shapefile" }
highway = { path = "./components/highway" }
graph = { path = "./components/graph" }
bincode = "1.3.3"
rusqlite = { version = "0.38", features = ["bundled", "fallible_uint", "load_extension"] }
serde = { version = "1.0.227", features = ["derive"] }
serde_json = "1.0.149"
zstd = "0.13.3"
futures-lite = "2.6.1"
rayon = "1.11.0"
itertools = "0.14.0"
shapefile = "0.7.0"
rstar = "0.12.2"
anyhow = "1.0.71"