Skip to content

Commit

Permalink
Depend on serde derive feature explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Jan 9, 2024
1 parent 8eb491e commit 34de7f0
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion abstio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fs-err = { workspace = true }
instant = { workspace = true }
log = { workspace = true }
reqwest = { version = "0.11.22", default-features=false, features=["rustls-tls"] }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion abstutil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ itertools = "0.12.0"
log = { workspace = true }
num_cpus = "1.16.0"
scoped_threadpool = "0.1.9"
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }

[target.'cfg(unix)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion apps/game/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ petname = "1.1.3"
popdat = { path = "../../popdat" }
rand = { workspace = true }
rand_xorshift = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
svg_face = "0.1.3"
sim = { path = "../../sim" }
Expand Down
2 changes: 1 addition & 1 deletion apps/ltn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ md5 = "0.7.0"
rand = { workspace = true }
rand_xorshift = { workspace = true }
regex = "1.8.1"
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
synthpop = { path = "../../synthpop" }
Expand Down
2 changes: 1 addition & 1 deletion apps/map_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ geom = { workspace = true }
getrandom = { workspace = true, optional = true }
log = { workspace = true }
raw_map = { path = "../../raw_map" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
structopt = { workspace = true }
wasm-bindgen = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion apps/santa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ map_model = { path = "../../map_model" }
rand = { workspace = true }
rand_xorshift = { workspace = true }
rodio = { version = "0.17.3", default-features = false, features = ["vorbis"] }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
wasm-bindgen = { workspace = true, optional = true }
widgetry = { path = "../../widgetry" }
2 changes: 1 addition & 1 deletion blockfinding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ anyhow = { workspace = true }
geom = { workspace = true }
log = { workspace = true }
map_model = { path = "../map_model" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ osmio = "0.8.1"
rand = "0.8.3"
rand_xorshift = { workspace = true }
raw_map = { path = "../raw_map" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
sim = { path = "../sim" }
synthpop = { path = "../synthpop" }
structopt = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion collisions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
geom = { workspace = true }
kml = { path = "../kml" }
log = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
2 changes: 1 addition & 1 deletion convert_osm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ log = { workspace = true }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
popgetter = { path = "../popgetter" }
raw_map = { path = "../raw_map" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
streets_reader = { git = "https://github.com/a-b-street/osm2streets" }
2 changes: 1 addition & 1 deletion headless/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ log = { workspace = true }
map_model = { path = "../map_model" }
rand = { workspace = true }
rand_xorshift = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
sim = { path = "../sim" }
synthpop = { path = "../synthpop" }
Expand Down
2 changes: 1 addition & 1 deletion importer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ popdat = { path = "../popdat" }
rand = "0.8.3"
rand_xorshift = { workspace = true }
raw_map = { path = "../raw_map" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
sim = { path = "../sim" }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
Expand Down
2 changes: 1 addition & 1 deletion kml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ csv = { workspace = true }
geom = { workspace = true }
log = { workspace = true }
roxmltree = { version = "0.19.0", features=["std"] }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
2 changes: 1 addition & 1 deletion map_gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ lyon = "1.0.1"
map_model = { path = "../map_model" }
regex = "1.10.2"
rfd = "0.11.3"
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
synthpop = { path = "../synthpop" }
structopt = { workspace = true }
subprocess = { git = "https://github.com/hniksic/rust-subprocess", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion map_model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ popgetter = { path = "../popgetter" }
rand = { workspace = true }
rand_xorshift = { workspace = true }
raw_map = { path = "../raw_map" }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
structopt = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion popdat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ map_model = { path = "../map_model" }
rand = { workspace = true }
rand_distr = "0.4.3"
rand_xorshift = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
sim = { path = "../sim" }
synthpop = { path = "../synthpop" }
2 changes: 1 addition & 1 deletion popgetter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ fs-err = { workspace = true }
geo = { workspace = true }
geo-types = "0.7.12"
geojson = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
topojson = { git = "https://github.com/georust/topojson" }
2 changes: 1 addition & 1 deletion raw_map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
abstio = { path = "../abstio" }
abstutil = { path = "../abstutil" }
geom = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
osm2streets = { git = "https://github.com/a-b-street/osm2streets" }
popgetter = { path = "../popgetter" }
strum = "0.24.1"
Expand Down
2 changes: 1 addition & 1 deletion sim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ map_model = { path = "../map_model" }
rand = { workspace = true }
rand_distr = "0.4.3"
rand_xorshift = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
structopt = { workspace = true }
synthpop = { path = "../synthpop" }

Expand Down
2 changes: 1 addition & 1 deletion synthpop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ log = { workspace = true }
map_model = { path = "../map_model" }
rand = "0.8.5"
rand_xorshift = { workspace = true }
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
2 changes: 1 addition & 1 deletion widgetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ js-sys = { version = "0.3.47", optional = true }
log = { workspace = true }
lru = "0.10.0"
lyon = "1.0.0"
serde = { workspace = true }
serde = { workspace = true, features=["derive"] }
serde_json = { workspace = true }
taffy = "0.2.2"
tokio = { workspace = true, optional = true }
Expand Down

0 comments on commit 34de7f0

Please sign in to comment.