2018-03-13 18:04:21 +03:00
|
|
|
[workspace]
|
|
|
|
|
2018-09-06 23:43:00 +03:00
|
|
|
members = [
|
2021-01-02 21:28:00 +03:00
|
|
|
"abstio",
|
2018-09-06 23:43:00 +03:00
|
|
|
"abstutil",
|
2022-02-19 21:17:08 +03:00
|
|
|
"apps/*",
|
2021-09-14 21:53:06 +03:00
|
|
|
"cli",
|
2020-11-06 03:16:40 +03:00
|
|
|
"collisions",
|
2018-09-06 23:43:00 +03:00
|
|
|
"convert_osm",
|
|
|
|
"geom",
|
|
|
|
"headless",
|
2020-03-26 05:54:33 +03:00
|
|
|
"importer",
|
2018-09-06 23:43:00 +03:00
|
|
|
"kml",
|
2020-11-23 03:11:27 +03:00
|
|
|
"map_gui",
|
2018-09-06 23:43:00 +03:00
|
|
|
"map_model",
|
2021-10-31 23:52:58 +03:00
|
|
|
"piggyback",
|
2020-12-10 09:11:05 +03:00
|
|
|
"popdat",
|
2022-02-19 20:39:28 +03:00
|
|
|
"raw_map",
|
2018-09-06 23:43:00 +03:00
|
|
|
"sim",
|
2022-01-28 14:24:30 +03:00
|
|
|
"synthpop",
|
2020-11-05 23:42:52 +03:00
|
|
|
"tests",
|
2020-10-02 04:24:35 +03:00
|
|
|
"traffic_seitan",
|
2020-12-31 22:01:48 +03:00
|
|
|
"traffic_signal_data",
|
2020-05-02 05:22:03 +03:00
|
|
|
"updater",
|
2020-08-27 20:37:04 +03:00
|
|
|
"widgetry",
|
2020-10-06 01:09:12 +03:00
|
|
|
"widgetry_demo",
|
2018-09-06 23:43:00 +03:00
|
|
|
]
|
2020-02-18 18:56:38 +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
|
2022-06-22 22:00:30 +03:00
|
|
|
|
2022-07-08 23:49:23 +03:00
|
|
|
# There's a circular dependency between this repo (abstreet) and osm2streets,
|
|
|
|
# due to the 3 core dependency crates listed below. This patch is required to
|
|
|
|
# avoid Cargo from getting confused.
|
|
|
|
[patch."https://github.com/a-b-street/abstreet/"]
|
|
|
|
geom = { path = "geom" }
|
|
|
|
abstutil = { path = "abstutil" }
|
|
|
|
kml = { path = "kml" }
|
|
|
|
|
2022-06-22 22:00:30 +03:00
|
|
|
[patch.crates-io]
|
|
|
|
# avoid duplicating geo dependency, until next polylabel release
|
2022-06-24 20:23:34 +03:00
|
|
|
polylabel = { git = "https://github.com/urschrei/polylabel-rs", rev = "b919b8587b491b9a952a6d4c0670558bfd38e034" }
|