abstreet/Cargo.toml
Dustin Carlino ec114e51e1 Prototype an idea for unit testing the turn generation code. Hardcode a
simple .osm, turn it into a full Map, and inspect the results.
2020-09-30 16:30:28 -07:00

32 lines
851 B
TOML

[workspace]
members = [
"abstutil",
"convert_osm",
"game",
"geom",
"headless",
"importer",
"kml",
"map_editor",
"map_model",
"map_tests",
"sim",
"updater",
"widgetry",
]
# 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]
# Bug fixes merged since 0.22.2:
# - web: DPI vs. custom cursor icon: https://github.com/rust-windowing/winit/pull/1652
# - web: vscroll inverted: https://github.com/rust-windowing/winit/pull/1665
# - mac: hscroll inverted: https://github.com/rust-windowing/winit/pull/1696
winit = { git = "https://github.com/rust-windowing/winit" }