abstreet/Cargo.toml

31 lines
836 B
TOML

[workspace]
members = [
"abstutil",
"convert_osm",
"game",
"geom",
"headless",
"importer",
"kml",
"map_editor",
"map_model",
"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" }