mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 01:15:12 +03:00
558eb6f716
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.
29 lines
562 B
TOML
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
|