mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Update deps with cargo upgrade (#152)
* Update deps with cargo upgrade * Keep tracy versions aligned
This commit is contained in:
parent
93961379d2
commit
99a74d35df
@ -9,8 +9,8 @@ publish = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
maplibre = { path = "../maplibre" }
|
maplibre = { path = "../maplibre" }
|
||||||
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
||||||
env_logger = "0.9"
|
env_logger = "0.9.0"
|
||||||
log = "0.4.16"
|
log = "0.4.17"
|
||||||
ndk-glue = "0.5.0" # version is required by winit
|
ndk-glue = "0.5.0" # version is required by winit
|
||||||
jni = "0.19.0"
|
jni = "0.19.0"
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@ publish = false
|
|||||||
maplibre = { path = "../maplibre" }
|
maplibre = { path = "../maplibre" }
|
||||||
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
||||||
|
|
||||||
env_logger = "0.9"
|
env_logger = "0.9.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "maplibre_apple"
|
name = "maplibre_apple"
|
||||||
|
|||||||
@ -9,8 +9,8 @@ edition = "2021"
|
|||||||
maplibre = { path = "../maplibre", features = ["headless", "embed-static-tiles"] }
|
maplibre = { path = "../maplibre", features = ["headless", "embed-static-tiles"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = { version = "0.3", features = ["async_tokio"] }
|
criterion = { version = "0.3.6", features = ["async_tokio"] }
|
||||||
tokio = "1.18.2"
|
tokio = "1.19.2"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "render"
|
name = "render"
|
||||||
|
|||||||
@ -13,8 +13,8 @@ sqlite = ["rusqlite"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
naga = { git = "https://github.com/gfx-rs/naga", branch = "master", features = ["wgsl-in"] }
|
naga = { git = "https://github.com/gfx-rs/naga", branch = "master", features = ["wgsl-in"] }
|
||||||
walkdir = "2.3"
|
walkdir = "2.3.2"
|
||||||
log = "0.4"
|
log = "0.4.17"
|
||||||
rusqlite = {version= "0.26", optional=true}
|
rusqlite = { version = "0.27.0", optional = true }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0.82"
|
||||||
flate2 = "1.0"
|
flate2 = "1.0.24"
|
||||||
|
|||||||
@ -13,11 +13,11 @@ web-webgl = ["maplibre/web-webgl"]
|
|||||||
trace = ["maplibre/trace", "tracing-subscriber", "tracing-tracy", "tracy-client"]
|
trace = ["maplibre/trace", "tracing-subscriber", "tracing-tracy", "tracy-client"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
env_logger = "0.9"
|
env_logger = "0.9.0"
|
||||||
maplibre = { path = "../maplibre", version = "0.0.2", features = ["headless"] }
|
maplibre = { path = "../maplibre", version = "0.0.2", features = ["headless"] }
|
||||||
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
||||||
|
|
||||||
tracing = { version = "0.1" }
|
tracing = "0.1.35"
|
||||||
tracing-subscriber = { version = "0.3", optional = true }
|
tracing-subscriber = { version = "0.3.14", optional = true }
|
||||||
tracing-tracy = { version = "0.8", optional = true }
|
tracing-tracy = { version = "0.8", optional = true }
|
||||||
tracy-client = { version = "0.12.7", optional = true }
|
tracy-client = { version = "0.12.7", optional = true }
|
||||||
@ -4,22 +4,22 @@ version = "0.0.1"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies]
|
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies]
|
||||||
tokio = { version = "1.17", features = ["rt"] }
|
tokio = { version = "1.19.2", features = ["rt"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
winit = { version = "0.26", default-features = false }
|
winit = { version = "0.26.1", default-features = false }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
winit = { version = "0.26", default-features = false, features = ["x11", "wayland"] }
|
winit = { version = "0.26.1", default-features = false, features = ["x11", "wayland"] }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
web-sys = { version = "0.3", features = ["Window"] }
|
web-sys = { version = "0.3.58", features = ["Window"] }
|
||||||
wasm-bindgen = "0.2"
|
wasm-bindgen = "0.2.81"
|
||||||
wasm-bindgen-futures = "0.4"
|
wasm-bindgen-futures = "0.4.31"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
maplibre = { path = "../maplibre", version = "0.0.2" }
|
maplibre = { path = "../maplibre", version = "0.0.2" }
|
||||||
winit = { version = "0.26", default-features = false }
|
winit = { version = "0.26.1", default-features = false }
|
||||||
cgmath = "0.18.0"
|
cgmath = "0.18.0"
|
||||||
instant = { version = "0.1", features = ["wasm-bindgen"] } # FIXME: Untrusted dependency
|
instant = { version = "0.1.12", features = ["wasm-bindgen"] } # FIXME: Untrusted dependency
|
||||||
log = "0.4"
|
log = "0.4.17"
|
||||||
|
|||||||
@ -18,69 +18,69 @@ headless = ["png"]
|
|||||||
|
|
||||||
|
|
||||||
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies]
|
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "linux", target_os = "android", target_os = "windows"))'.dependencies]
|
||||||
tokio = { version = "1.17", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
|
tokio = { version = "1.19.2", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
|
||||||
env_logger = "0.9"
|
env_logger = "0.9.0"
|
||||||
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "gzip"] }
|
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "gzip"] }
|
||||||
reqwest-middleware-cache = "0.1" # FIXME: Untrusted dependency
|
reqwest-middleware-cache = "0.1.1" # FIXME: Untrusted dependency
|
||||||
reqwest-middleware = { version = "0.1" } # FIXME: Untrusted dependency
|
reqwest-middleware = "0.1.6" # FIXME: Untrusted dependency
|
||||||
tracing-tracy = { version = "0.8", optional = true }
|
tracing-tracy = { version = "0.8", optional = true }
|
||||||
tracy-client = { version = "0.12.7", optional = true }
|
tracy-client = { version = "0.12.7", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
# Use rusttls on android because cross compiling is difficult
|
# Use rusttls on android because cross compiling is difficult
|
||||||
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "gzip"] }
|
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "gzip"] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1.56"
|
||||||
instant = { version = "0.1", features = ["wasm-bindgen"] } # FIXME: Untrusted dependency
|
instant = { version = "0.1.12", features = ["wasm-bindgen"] } # FIXME: Untrusted dependency
|
||||||
|
|
||||||
# Tracing
|
# Tracing
|
||||||
tracing = { version = "0.1" }
|
tracing = "0.1.35"
|
||||||
tracing-subscriber = { version = "0.3", optional = true }
|
tracing-subscriber = { version = "0.3.14", optional = true }
|
||||||
|
|
||||||
# Maths
|
# Maths
|
||||||
cgmath = "0.18"
|
cgmath = "0.18.0"
|
||||||
|
|
||||||
# Geo
|
# Geo
|
||||||
geo = { version = "0.19" }
|
geo = "0.22.1"
|
||||||
geo-types = { version = "0.7", features = ["use-rstar_0_9"] }
|
geo-types = { version = "0.7.6", features = ["use-rstar_0_9"] }
|
||||||
rstar = { version = "0.9" }
|
rstar = "0.9.3"
|
||||||
prost = "0.10.1"
|
prost = "0.10.4"
|
||||||
geozero = { version = "0.9.4", default-features = false, features = ["with-mvt", "with-geo"]}
|
geozero = { version = "0.9.4", default-features = false, features = ["with-mvt", "with-geo"] }
|
||||||
tile-grid = "0.3"
|
tile-grid = "0.3.0"
|
||||||
|
|
||||||
# Rendering
|
# Rendering
|
||||||
wgpu = "0.13.0"
|
wgpu = "0.13.1"
|
||||||
lyon = { version = "0.17", features = [] }
|
lyon = { version = "0.17.10", features = [] }
|
||||||
raw-window-handle = "0.4"
|
raw-window-handle = "0.4.3"
|
||||||
|
|
||||||
# cached = "0.32"
|
# cached = "0.32"
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
log = "0.4"
|
log = "0.4.17"
|
||||||
|
|
||||||
# Utils
|
# Utils
|
||||||
bytemuck = "1.2.0"
|
bytemuck = "1.10.0"
|
||||||
bytemuck_derive = "1.0"
|
bytemuck_derive = "1.1.0"
|
||||||
|
|
||||||
# Static tiles inclusion
|
# Static tiles inclusion
|
||||||
include_dir = "0.7.2"
|
include_dir = "0.7.2"
|
||||||
|
|
||||||
# JSON
|
# JSON
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0.138", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0.82"
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
csscolorparser = { version = "0.5", features = ["serde", "cint"]}
|
csscolorparser = { version = "0.6.0", features = ["serde", "cint"] }
|
||||||
cint = "0.2"
|
cint = "0.3.1"
|
||||||
|
|
||||||
# Required by bevy renderer
|
# Required by bevy renderer
|
||||||
thiserror = "1"
|
thiserror = "1.0.31"
|
||||||
downcast-rs = "1.2"
|
downcast-rs = "1.2.0"
|
||||||
smallvec = "1.8"
|
smallvec = "1.9.0"
|
||||||
|
|
||||||
# Headless
|
# Headless
|
||||||
png = { version = "0.17", optional = true }
|
png = { version = "0.17.5", optional = true }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
maplibre-build-tools = { path = "../maplibre-build-tools", version = "0.1.0" }
|
maplibre-build-tools = { path = "../maplibre-build-tools", version = "0.1.0" }
|
||||||
|
|||||||
@ -18,23 +18,23 @@ wasm-opt = true
|
|||||||
crate-type = ["cdylib", "rlib"]
|
crate-type = ["cdylib", "rlib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1.56"
|
||||||
maplibre = { path = "../maplibre", features = ["no-thread-safe-futures"] }
|
maplibre = { path = "../maplibre", features = ["no-thread-safe-futures"] }
|
||||||
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
maplibre-winit = { path = "../maplibre-winit", version = "0.0.1" }
|
||||||
log = "0.4"
|
log = "0.4.17"
|
||||||
|
|
||||||
console_error_panic_hook = "0.1"
|
console_error_panic_hook = "0.1.7"
|
||||||
web-sys = { version = "0.3", features = [
|
web-sys = { version = "0.3.58", features = [
|
||||||
"Window",
|
"Window",
|
||||||
"Worker", "WorkerGlobalScope", "DedicatedWorkerGlobalScope", "MessageEvent",
|
"Worker", "WorkerGlobalScope", "DedicatedWorkerGlobalScope", "MessageEvent",
|
||||||
"Request", "RequestInit", "RequestMode", "Response", "Headers",
|
"Request", "RequestInit", "RequestMode", "Response", "Headers",
|
||||||
"ErrorEvent"
|
"ErrorEvent"
|
||||||
] }
|
] }
|
||||||
js-sys = "0.3"
|
js-sys = "0.3.58"
|
||||||
wasm-bindgen = "0.2"
|
wasm-bindgen = "0.2.81"
|
||||||
wasm-bindgen-futures = "0.4"
|
wasm-bindgen-futures = "0.4.31"
|
||||||
console_log = { version = "0.2", features = ["color"] }
|
console_log = { version = "0.2.0", features = ["color"] }
|
||||||
tracing-wasm = { version = "0.2", optional = true } # FIXME: Low quality dependency
|
tracing-wasm = { version = "0.2.1", optional = true } # FIXME: Low quality dependency
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasm-bindgen-test = "0.3"
|
wasm-bindgen-test = "0.3.31"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user