abstreet/Cargo.toml
Dustin Carlino 558eb6f716 Extract DrawMap into a separate crate, along with everything else it
depends on.

The goal is to be able to split things like the OSM viewer, parking
mapper, and 15 min tool into separate crates from the game, while still
sharing lots of code.
2020-11-23 17:58:32 -08:00

29 lines
562 B
TOML

[workspace]
members = [
"abstutil",
"collisions",
"convert_osm",
"game",
"geom",
"headless",
"importer",
"kml",
"map_editor",
"map_gui",
"map_model",
"sim",
"tests",
"traffic_seitan",
"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