abstreet/Cargo.toml
2022-05-02 21:28:38 +01:00

39 lines
814 B
TOML

[workspace]
members = [
"abstio",
"abstutil",
"apps/*",
"cli",
"collisions",
"convert_osm",
"geom",
"headless",
"importer",
"kml",
"map_gui",
"map_model",
"piggyback",
"popdat",
"raw_map",
"sim",
"synthpop",
"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]
# Waiting for a release: https://github.com/21re/rust-geo-booleanop/pull/27
geo-booleanop = { git = "https://github.com/21re/rust-geo-booleanop" }