abstreet/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

[workspace]
2018-09-06 23:43:00 +03:00
members = [
"abstio",
2018-09-06 23:43:00 +03:00
"abstutil",
"cli",
"collisions",
2018-09-06 23:43:00 +03:00
"convert_osm",
"fifteen_min",
"game",
2018-09-06 23:43:00 +03:00
"geom",
"headless",
"importer",
2018-09-06 23:43:00 +03:00
"kml",
"map_editor",
"map_gui",
2018-09-06 23:43:00 +03:00
"map_model",
"osm_viewer",
"parking_mapper",
"popdat",
"santa",
2018-09-06 23:43:00 +03:00
"sim",
"tests",
"traffic_seitan",
"traffic_signal_data",
"updater",
"widgetry",
"widgetry_demo",
2018-09-06 23:43:00 +03:00
]
# 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
2020-12-15 04:48:47 +03:00
[patch.crates-io]
# Waiting for release: https://github.com/21re/rust-geo-booleanop/pull/27
geo-booleanop = { git = "https://github.com/21re/rust-geo-booleanop" }
# Waiting for a new crates.io release, but git uses latest geo versions
polylabel = { git = "https://github.com/urschrei/polylabel-rs" }
# Waiting on release of PR: https://github.com/georust/geo/pull/654
geo = { git = "https://github.com/georust/geo" }
geo-types = { git = "https://github.com/georust/geo" }