abstreet/Cargo.toml
2020-08-19 12:49:30 -07:00

28 lines
601 B
TOML

[workspace]
members = [
"abstutil",
"convert_osm",
"ezgui",
"game",
"geom",
"headless",
"importer",
"iotool",
"kml",
"map_editor",
"map_model",
"sim",
"updater",
]
# 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]
winit = { git = "https://github.com/michaelkirk/winit", branch = "mkirk/fix-stdweb-dpi" }