-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 905 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 905 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
[package]
name = "micro_traffic_sim_core"
version = "0.1.11"
edition = "2024"
description = "Core library for microscopic traffic simulation via cellular automata."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/LdDl/micro_traffic_sim_core"
documentation = "https://docs.rs/micro_traffic_sim_core"
homepage = "https://github.com/LdDl/micro_traffic_sim_core"
keywords = ["traffic", "simulation", "automata", "grid", "pathfinding"]
[dependencies]
rand = "0.9.2"
lazy_static = "1.5.0"
indexmap = "2.12.0"
uuid = { version = "1.18.1", features = ["v4"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
serde_json = "1.0.145"
[dev-dependencies]
criterion = { version = "0.7.0", features = ["html_reports"] }
[[bench]]
name = "shortest_path_benchmark"
harness = false
[lib]
name = "micro_traffic_sim_core"
path = "src/lib.rs"