mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-28 03:35:51 +03:00
unused deps
This commit is contained in:
parent
bd2cb6ddd1
commit
b835f8a6f7
@ -214,13 +214,13 @@ e7884caaa7d3eb5072f49ed2e998ebb4 data/system/maps/23rd.bin
|
|||||||
d71169fc1789707c403e70e6f2cc27d4 data/system/synthetic_maps/signal_double.json
|
d71169fc1789707c403e70e6f2cc27d4 data/system/synthetic_maps/signal_double.json
|
||||||
407cf814c6b5c73b5e1857529b94a204 data/system/synthetic_maps/signal_single.json
|
407cf814c6b5c73b5e1857529b94a204 data/system/synthetic_maps/signal_single.json
|
||||||
7e3b93d87b5c6cf4788122e7f65ecac1 data/system/synthetic_maps/signal_fan_in.json
|
7e3b93d87b5c6cf4788122e7f65ecac1 data/system/synthetic_maps/signal_fan_in.json
|
||||||
170bc2dd2ff2af864bd593e54963b1dc data/system/scenarios/ballard/weekday.bin
|
3cec967383c9674849459007bb6d8a9e data/system/scenarios/ballard/weekday.bin
|
||||||
c0c4d41286fb37c0757643d47b165ad1 data/system/scenarios/intl_district/weekday.bin
|
41d9f841ebe29a2bf25cd9b95b834482 data/system/scenarios/intl_district/weekday.bin
|
||||||
bfb6c5abe4b9de1f9b254c0c2a5cdf52 data/system/scenarios/23rd/weekday.bin
|
916716f6ed41c1ebc109bb9d18732d4a data/system/scenarios/23rd/weekday.bin
|
||||||
f9f0a109966db097617a13122ecaa6f3 data/system/scenarios/downtown/weekday.bin
|
45b05fe29fc6b5e3d0da8a1a4306e7d1 data/system/scenarios/downtown/weekday.bin
|
||||||
dd54763cfda7fce4c401ae122c6daf57 data/system/scenarios/huge_seattle/weekday.bin
|
2ceb69175def89cb7c0669ad7fc61eb6 data/system/scenarios/huge_seattle/weekday.bin
|
||||||
47dea892a1c4331da02494d15ce02a02 data/system/scenarios/caphill/weekday.bin
|
ee4870543c7ed1a5ddd171e4dac718c6 data/system/scenarios/caphill/weekday.bin
|
||||||
7d6a8e8f5d716ce8674ed63d27f2da51 data/system/scenarios/montlake/weekday.bin
|
415dca56417742ff2281082f83ac3fca data/system/scenarios/montlake/weekday.bin
|
||||||
5f78d73efbabf06aed28c0e80c6b6d5b data/system/prebaked_results/23rd/weekday.bin
|
5f78d73efbabf06aed28c0e80c6b6d5b data/system/prebaked_results/23rd/weekday.bin
|
||||||
39dc5028982cc7ef40da44ec00ab1020 data/system/prebaked_results/signal_single/tutorial lvl1.bin
|
39dc5028982cc7ef40da44ec00ab1020 data/system/prebaked_results/signal_single/tutorial lvl1.bin
|
||||||
c4f5661e5c62c0c0ccccc7c2b9f2d365 data/system/prebaked_results/signal_single/tutorial lvl2.bin
|
c4f5661e5c62c0c0ccccc7c2b9f2d365 data/system/prebaked_results/signal_single/tutorial lvl2.bin
|
||||||
|
@ -19,7 +19,6 @@ glium = { version = "0.26.0", optional = true }
|
|||||||
glow = { version = "0.4.0", optional = true, default-features=false }
|
glow = { version = "0.4.0", optional = true, default-features=false }
|
||||||
glutin = { git = "https://github.com/dabreegster/glutin", optional = true }
|
glutin = { git = "https://github.com/dabreegster/glutin", optional = true }
|
||||||
htmlescape = "0.3.1"
|
htmlescape = "0.3.1"
|
||||||
image = "0.22.2"
|
|
||||||
instant = "0.1.2"
|
instant = "0.1.2"
|
||||||
lru = "0.4.3"
|
lru = "0.4.3"
|
||||||
lyon = "0.15.6"
|
lyon = "0.15.6"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
// To run:
|
||||||
|
// > cargo run --example demo --features glium-backend
|
||||||
|
//
|
||||||
|
// Try the web version, but there's no text rendering yet:
|
||||||
|
// > cargo web start --target wasm32-unknown-unknown --features wasm-backend --example demo
|
||||||
|
|
||||||
use ezgui::{
|
use ezgui::{
|
||||||
hotkey, Button, Color, Composite, Drawable, EventCtx, EventLoopMode, GeomBatch, GfxCtx,
|
hotkey, Button, Color, Composite, Drawable, EventCtx, EventLoopMode, GeomBatch, GfxCtx,
|
||||||
HorizontalAlignment, Key, Line, ManagedWidget, Outcome, Text, VerticalAlignment, GUI,
|
HorizontalAlignment, Key, Line, ManagedWidget, Outcome, Text, VerticalAlignment, GUI,
|
||||||
|
@ -15,7 +15,6 @@ aabb-quadtree = "0.1.0"
|
|||||||
abstutil = { path = "../abstutil" }
|
abstutil = { path = "../abstutil" }
|
||||||
built = { version = "0.3.2", optional = true }
|
built = { version = "0.3.2", optional = true }
|
||||||
chrono = "0.4.10"
|
chrono = "0.4.10"
|
||||||
counter = "0.4.3"
|
|
||||||
downcast-rs = "1.0.4"
|
downcast-rs = "1.0.4"
|
||||||
ezgui = { path = "../ezgui", default-features=false }
|
ezgui = { path = "../ezgui", default-features=false }
|
||||||
geom = { path = "../geom" }
|
geom = { path = "../geom" }
|
||||||
|
@ -9,7 +9,6 @@ abstutil = { path = "../abstutil" }
|
|||||||
csv = "1.0.1"
|
csv = "1.0.1"
|
||||||
failure = "0.1.2"
|
failure = "0.1.2"
|
||||||
geom = { path = "../geom" }
|
geom = { path = "../geom" }
|
||||||
kml = { path = "../kml" }
|
|
||||||
map_model = { path = "../map_model" }
|
map_model = { path = "../map_model" }
|
||||||
serde = "1.0.98"
|
serde = "1.0.98"
|
||||||
serde_derive = "1.0.98"
|
serde_derive = "1.0.98"
|
||||||
|
Loading…
Reference in New Issue
Block a user