abstreet/map_model/Cargo.toml
Dustin Carlino e99def9124 Switch all error handling to anyhow. Nothing consumes our code as a
library yet, so this is a step forward from string errors. Manually
tested how errors show up (including the nice with_context bit).
2021-01-05 11:35:03 -08:00

23 lines
570 B
TOML

[package]
name = "map_model"
version = "0.1.0"
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
edition = "2018"
[dependencies]
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
anyhow = "1.0.37"
enumset = { version = "1.0.1", features=["serde"] }
fast_paths = { git = "https://github.com/easbar/fast_paths" }
geom = { path = "../geom" }
log = "0.4.11"
nbez = "0.1.0"
petgraph = "0.5.1"
rand = "0.8.1"
rand_xorshift = "0.3.0"
serde = "1.0.116"
serde_json = "1.0.61"
thread_local = "1.0.1"
traffic_signal_data = { path = "../traffic_signal_data" }