Skip to content

Commit

Permalink
chore: bump all deps to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed May 28, 2023
1 parent 60b4070 commit 9cf3365
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ geo-types = { version = "0.7.9", features = ["use-rstar_0_9"] }
geozero = { version = "0.9.9", default-features = false, features = ["with-mvt", "with-geo"] }
image = { version = "0.24", default-features = false, features = ["jpeg", "webp", "png"] }
include_dir = "0.7.3"
instant = { version = "0.1.12", features = ["wasm-bindgen"] } # TODO: Untrusted dependency
instant = { version = "0.1.12", features = ["wasm-bindgen"] } # TODO: Untrusted dependency
jni = "0.21.1"
js-sys = "0.3.63"
log = "0.4.18"
lyon = { version = "1.0.1", features = [] }
naga = { version = "0.12.1", features = ["wgsl-in"] }
ndk-glue = "0.7.0" # version is required by winit
png = { version = "0.17.8" }
rand = { version = "0.8", features = ["wasm-bindgen"] }
rand = { version = "0.7.3", features = ["wasm-bindgen"] } # TODO: Not yet upgraded because wasm-bindgen feature was later removed
raw-window-handle = "0.5.2"
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "gzip"] } # Use rusttls on android because cross compiling is difficult
reqwest-middleware = "0.2.2" # FIXME: Untrusted dependency
reqwest-middleware-cache = "0.1.1" # FIXME: Untrusted dependency
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "gzip"] } # Use rusttls on android because cross compiling is difficult
reqwest-middleware = "0.2.2" # FIXME: Untrusted dependency
reqwest-middleware-cache = "0.1.1" # FIXME: Untrusted dependency
rstar = "0.10.0"
rusqlite = { version = "0.29.0" }
serde = { version = "1.0.163", features = ["derive"] }
Expand All @@ -77,7 +77,7 @@ wasm-bindgen-futures = "0.4"
wasm-bindgen-test = "0.3"
web-sys = "0.3.63"
wgpu = "0.16.1"
winit = { version = "0.28.6", default-features = false }
winit = { version = "0.28.6", default-features = false, features = [] }

[profile.release]
lto = true
Expand Down
5 changes: 3 additions & 2 deletions maplibre-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ authors.workspace = true
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies]
tokio.workspace = true

[target.'cfg(target_os = "android")'.dependencies]
winit.wokrspace = true
# FIXME: is this section needed? Seems to be identical to the default
#[target.'cfg(target_os = "android")'.dependencies]
#winit.wokrspace = true

[target.'cfg(target_os = "linux")'.dependencies]
winit = { workspace = true, features = ["x11", "wayland"] }
Expand Down

0 comments on commit 9cf3365

Please sign in to comment.