Skip to content

Commit c705f4e

Browse files
authored
Update dependencies to latest semver compatible versions. (#2364)
1 parent 20f8d17 commit c705f4e

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

druid-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ rustdoc-args = ["--cfg", "docsrs"]
1515
default-target = "x86_64-pc-windows-msvc"
1616

1717
[dependencies]
18-
syn = "1.0.107"
18+
syn = "1.0.109"
1919
quote = "1.0.23"
20-
proc-macro2 = "1.0.50"
20+
proc-macro2 = "1.0.51"
2121

2222
[dev-dependencies]
2323
druid = { version = "0.8.2", path = "../druid" }

druid-shell/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ serde = ["piet-common/serde"]
6868
piet-common = "0.6.2"
6969

7070
tracing = "0.1.37"
71-
once_cell = "1.17.0"
72-
time = "0.3.17"
71+
once_cell = "1.17.1"
72+
time = "0.3.20"
7373
cfg-if = "1.0.0"
7474
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
75-
anyhow = "1.0.68"
76-
keyboard-types = { version = "0.6.2", default_features = false }
75+
anyhow = "1.0.69"
76+
keyboard-types = { version = "0.6.2", default-features = false }
7777

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

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

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

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

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

136136
[build-dependencies]
137137
bindgen = { version = "0.61.0", optional = true }

druid/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fluent-bundle = "0.15.2"
6060
fluent-langneg = "0.13.0"
6161
fluent-syntax = "0.11.0"
6262
unic-langid = "0.9.1"
63-
unicode-segmentation = "1.10.0"
63+
unicode-segmentation = "1.10.1"
6464
xi-unicode = "0.3.0"
6565
fnv = "1.0.7"
6666
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
@@ -70,15 +70,15 @@ chrono = { version = "0.4.23", optional = true }
7070
im = { version = "15.1.0", optional = true }
7171
resvg = { version = "0.25.0", optional = true } # When updating, make sure it doesn't pin a specific `png` crate, see druid#2345
7272
usvg = { version = "0.25.0", optional = true }
73-
tiny-skia = { version = "0.8.2", optional = true }
73+
tiny-skia = { version = "0.8.3", optional = true }
7474

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

7979
[dev-dependencies]
8080
float-cmp = { version = "0.9.0", features = ["std"], default-features = false }
81-
tempfile = "3.3.0"
81+
tempfile = "3.4.0"
8282
piet-common = { version = "0.6.2", features = ["png"] }
8383
pulldown-cmark = { version = "0.8.0", default-features = false }
8484
test-log = { version = "0.2.11", features = ["trace"], default-features = false }

druid/examples/hello_web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ crate-type = ["cdylib", "rlib"]
1313
[dependencies]
1414
druid = { path="../.." }
1515

16-
wasm-bindgen = "0.2.83"
16+
wasm-bindgen = "0.2.84"
1717
console_error_panic_hook = "0.1.7"

druid/examples/web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"]
1313
[dependencies]
1414
druid = { path="../..", features = ["im", "image", "png"] }
1515
tracing = "0.1.37"
16-
wasm-bindgen = "0.2.83"
16+
wasm-bindgen = "0.2.84"
1717
console_error_panic_hook = "0.1.7"
1818
log = "0.4.17"
1919
instant = { version = "0.1.12", features = ["wasm-bindgen"] }

0 commit comments

Comments
 (0)