mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 20:29:04 +03:00
31 lines
836 B
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" }
|