abstreet/Cargo.toml
Dustin Carlino a6a454d326 Add a tool to import external traffic demand data. The format and way of
calling the tool (not in the importer?) are just experiments right now.
2020-08-17 12:32:09 -07:00

28 lines
611 B
TOML

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