micro_traffic_sim_core 0.1.9

Core library for microscopic traffic simulation via cellular automata.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "micro_traffic_sim_core"
version = "0.1.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for microscopic traffic simulation via cellular automata."
homepage = "https://github.com/LdDl/micro_traffic_sim_core"
documentation = "https://docs.rs/micro_traffic_sim_core"
readme = "README.md"
keywords = [
    "traffic",
    "simulation",
    "automata",
    "grid",
    "pathfinding",
]
license = "Apache-2.0"
repository = "https://github.com/LdDl/micro_traffic_sim_core"

[lib]
name = "micro_traffic_sim_core"
path = "src/lib.rs"

[[bin]]
name = "bench_sp"
path = "src/bin/bench_sp.rs"

[[example]]
name = "all-tail"
path = "examples/all-tail/main.rs"

[[example]]
name = "deadend"
path = "examples/deadend/main.rs"

[[example]]
name = "grid-basics"
path = "examples/grid-basics/main.rs"

[[example]]
name = "isolated"
path = "examples/isolated/main.rs"

[[example]]
name = "nasch-lanes-merge"
path = "examples/nasch-lanes-merge/main.rs"

[[example]]
name = "nasch-one-lane"
path = "examples/nasch-one-lane/main.rs"

[[example]]
name = "nasch-roads-merge"
path = "examples/nasch-roads-merge/main.rs"

[[example]]
name = "nasch-two-lanes"
path = "examples/nasch-two-lanes/main.rs"

[[example]]
name = "ring"
path = "examples/ring/main.rs"

[[example]]
name = "tutorial"
path = "examples/tutorial/main.rs"

[[test]]
name = "tail_test"
path = "tests/tail_test.rs"

[[bench]]
name = "shortest_path_benchmark"
path = "benches/shortest_path_benchmark.rs"
harness = false

[dependencies.indexmap]
version = "2.12.0"

[dependencies.lazy_static]
version = "1.5.0"

[dependencies.rand]
version = "0.9.2"

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-subscriber]
version = "0.3.19"
features = [
    "json",
    "env-filter",
]

[dependencies.uuid]
version = "1.18.1"
features = ["v4"]

[dev-dependencies.criterion]
version = "0.7.0"
features = ["html_reports"]