abstreet/Cargo.toml
Dustin Carlino 802e020520 Import a SUMO network, transform it into an ABST map. So far, this gets
lanes and intersections displaying, but with lots of problems.
2021-01-05 12:44:38 -08:00

42 lines
878 B
TOML

[workspace]
members = [
"abstio",
"abstutil",
"collisions",
"convert_osm",
"fifteen_min",
"game",
"geom",
"headless",
"importer",
"kml",
"map_editor",
"map_gui",
"map_model",
"osm_viewer",
"parking_mapper",
"popdat",
"santa",
"sim",
"sumo",
"tests",
"traffic_seitan",
"traffic_signal_data",
"updater",
"widgetry",
"widgetry_demo",
]
# See https://doc.rust-lang.org/cargo/reference/profiles.html#overrides. This
# compiles all external dependencies as release mode, yielding great runtime
# speed, but only paying the cost of slow compilation once (since we don't
# update dependencies often).
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
# Some niceties for parsing geojson feature properties.
# Upstreaming at https://github.com/georust/geojson/pull/155
geojson = { git = "https://github.com/georust/geojson" }