Skip to content

Commit

Permalink
Update dependencies to latest semver compatible versions. (#2364)
Browse files Browse the repository at this point in the history
  • Loading branch information
xStrom authored Feb 28, 2023
1 parent 20f8d17 commit c705f4e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions druid-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ rustdoc-args = ["--cfg", "docsrs"]
default-target = "x86_64-pc-windows-msvc"

[dependencies]
syn = "1.0.107"
syn = "1.0.109"
quote = "1.0.23"
proc-macro2 = "1.0.50"
proc-macro2 = "1.0.51"

[dev-dependencies]
druid = { version = "0.8.2", path = "../druid" }
Expand Down
24 changes: 12 additions & 12 deletions druid-shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ serde = ["piet-common/serde"]
piet-common = "0.6.2"

tracing = "0.1.37"
once_cell = "1.17.0"
time = "0.3.17"
once_cell = "1.17.1"
time = "0.3.20"
cfg-if = "1.0.0"
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
anyhow = "1.0.68"
keyboard-types = { version = "0.6.2", default_features = false }
anyhow = "1.0.69"
keyboard-types = { version = "0.6.2", default-features = false }

# Optional dependencies
raw-window-handle = { version = "0.5.0", optional = true, default_features = false }
raw-window-handle = { version = "0.5.0", optional = true, default-features = false }

[target.'cfg(target_os="windows")'.dependencies]
scopeguard = "1.1.0"
Expand All @@ -100,9 +100,9 @@ bitflags = "1.3.2"
[target.'cfg(any(target_os = "freebsd", target_os="linux", target_os="openbsd"))'.dependencies]
ashpd = { version = "0.3.2", optional = true }
# TODO(x11/dependencies): only use feature "xcb" if using X11
cairo-rs = { version = "0.16.3", default_features = false, features = ["xcb"] }
cairo-sys-rs = { version = "0.16.3", default_features = false, optional = true }
futures = { version = "0.3.25", optional = true, features = ["executor"]}
cairo-rs = { version = "0.16.7", default-features = false, features = ["xcb"] }
cairo-sys-rs = { version = "0.16.3", default-features = false, optional = true }
futures = { version = "0.3.26", optional = true, features = ["executor"]}
gdk-sys = { version = "0.16.0", optional = true }
# `gtk` gets renamed to `gtk-rs` so that we can use `gtk` as the feature name.
gtk-rs = { version = "0.16.2", package = "gtk", optional = true }
Expand All @@ -119,19 +119,19 @@ log = { version = "0.4.17", optional = true }
im = { version = "15.1.0", optional = true }

[target.'cfg(target_arch="wasm32")'.dependencies]
wasm-bindgen = "0.2.83"
js-sys = "0.3.60"
wasm-bindgen = "0.2.84"
js-sys = "0.3.61"

[target.'cfg(target_arch="wasm32")'.dependencies.web-sys]
version = "0.3.60"
version = "0.3.61"
features = ["Window", "MouseEvent", "CssStyleDeclaration", "WheelEvent", "KeyEvent", "KeyboardEvent", "Navigator"]

[dev-dependencies]
piet-common = { version = "0.6.2", features = ["png"] }
static_assertions = "1.1.0"
test-log = { version = "0.2.11", features = ["trace"], default-features = false }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
unicode-segmentation = "1.10.0"
unicode-segmentation = "1.10.1"

[build-dependencies]
bindgen = { version = "0.61.0", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions druid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fluent-bundle = "0.15.2"
fluent-langneg = "0.13.0"
fluent-syntax = "0.11.0"
unic-langid = "0.9.1"
unicode-segmentation = "1.10.0"
unicode-segmentation = "1.10.1"
xi-unicode = "0.3.0"
fnv = "1.0.7"
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
Expand All @@ -70,15 +70,15 @@ chrono = { version = "0.4.23", optional = true }
im = { version = "15.1.0", optional = true }
resvg = { version = "0.25.0", optional = true } # When updating, make sure it doesn't pin a specific `png` crate, see druid#2345
usvg = { version = "0.25.0", optional = true }
tiny-skia = { version = "0.8.2", optional = true }
tiny-skia = { version = "0.8.3", optional = true }

[target.'cfg(target_arch="wasm32")'.dependencies]
tracing-wasm = { version = "0.2.1" }
console_error_panic_hook = { version = "0.1.7" }

[dev-dependencies]
float-cmp = { version = "0.9.0", features = ["std"], default-features = false }
tempfile = "3.3.0"
tempfile = "3.4.0"
piet-common = { version = "0.6.2", features = ["png"] }
pulldown-cmark = { version = "0.8.0", default-features = false }
test-log = { version = "0.2.11", features = ["trace"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion druid/examples/hello_web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
druid = { path="../.." }

wasm-bindgen = "0.2.83"
wasm-bindgen = "0.2.84"
console_error_panic_hook = "0.1.7"
2 changes: 1 addition & 1 deletion druid/examples/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
druid = { path="../..", features = ["im", "image", "png"] }
tracing = "0.1.37"
wasm-bindgen = "0.2.83"
wasm-bindgen = "0.2.84"
console_error_panic_hook = "0.1.7"
log = "0.4.17"
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
Expand Down

0 comments on commit c705f4e

Please sign in to comment.