Skip to content

Commit 41516f0

Browse files
Bump the cargo-deps group across 1 directory with 8 updates
Bumps the cargo-deps group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.16` | | [implicit-clone](https://github.com/yewstack/implicit-clone) | `0.5.1` | `0.6.0` | | [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.2` | | [average](https://github.com/vks/average) | `0.15.1` | `0.16.0` | | [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.20.0` | | [indicatif](https://github.com/console-rs/indicatif) | `0.17.11` | `0.18.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.5` | | [warp](https://github.com/seanmonstar/warp) | `0.3.7` | `0.4.2` | Updates `thiserror` from 1.0.69 to 2.0.16 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.69...2.0.16) Updates `implicit-clone` from 0.5.1 to 0.6.0 - [Commits](yewstack/implicit-clone@v0.5.1...v0.6.0) Updates `rand` from 0.8.5 to 0.9.2 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](rust-random/rand@0.8.5...rand_core-0.9.2) Updates `average` from 0.15.1 to 0.16.0 - [Commits](https://github.com/vks/average/commits) Updates `tabled` from 0.18.0 to 0.20.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/commits) Updates `indicatif` from 0.17.11 to 0.18.0 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](console-rs/indicatif@0.17.11...0.18.0) Updates `toml` from 0.8.23 to 0.9.5 - [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.5) Updates `warp` from 0.3.7 to 0.4.2 - [Release notes](https://github.com/seanmonstar/warp/releases) - [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md) - [Commits](seanmonstar/warp@v0.3.7...v0.4.2) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.16 dependency-type: direct:production update-type: version-update:semver-major dependency-group: cargo-deps - dependency-name: implicit-clone dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: rand dependency-version: 0.9.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: average dependency-version: 0.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: tabled dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: indicatif dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: toml dependency-version: 0.9.5 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps - dependency-name: warp dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f05f02 commit 41516f0

File tree

10 files changed

+82
-252
lines changed

10 files changed

+82
-252
lines changed

Cargo.lock

Lines changed: 71 additions & 241 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/function_router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
lipsum = "0.9.1"
99
log = "0.4"
10-
rand = { version = "0.8", features = ["small_rng"] }
10+
rand = { version = "0.9", features = ["small_rng"] }
1111
yew = { path = "../../packages/yew" }
1212
yew-router = { path = "../../packages/yew-router" }
1313
serde = { version = "1.0", features = ["derive"] }

examples/immutable/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
implicit-clone = { version = "0.5", features = ["map"] }
9+
implicit-clone = { version = "0.6", features = ["map"] }
1010
wasm-bindgen = "0.2"
1111
web-sys = "0.3"
1212
yew = { path = "../../packages/yew", features = ["csr"] }

examples/router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ instant = { version = "0.1", features = ["wasm-bindgen"] }
99
lipsum = "0.9.1"
1010
log = "0.4"
1111
getrandom = { version = "0.2", features = ["js"] }
12-
rand = { version = "0.8", features = ["small_rng"] }
12+
rand = { version = "0.9", features = ["small_rng"] }
1313
wasm-logger = "0.2"
1414
yew = { path = "../../packages/yew", features = ["csr"] }
1515
yew-router = { path = "../../packages/yew-router" }

examples/simple_ssr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ log = "0.4"
2727

2828
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2929
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
30-
warp = "0.3"
30+
warp = "0.4"
3131
clap = { version = "4", features = ["derive"] }
3232

3333
[features]

packages/yew-agent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ yew = { version = "0.21.0", path = "../yew" }
1616
wasm-bindgen = "0.2"
1717
js-sys = "0.3"
1818
pinned = "0.1.0"
19-
thiserror = "1.0.37"
19+
thiserror = "2.0.16"
2020
bincode = { version = "1.3.3" }
2121
wasm-bindgen-futures = "0.4"
2222
serde = { version = "1", features = ["derive"] }

packages/yew/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ yew-macro = { version = "^0.21.0", path = "../yew-macro" }
2727
thiserror = "2.0"
2828
futures = { version = "0.3", default-features = false, features = ["std"] }
2929
html-escape = { version = "0.2.13", optional = true }
30-
implicit-clone = { version = "0.5", features = ["map"] }
30+
implicit-clone = { version = "0.6", features = ["map"] }
3131
base64ct = { version = "1.6.0", features = ["std"], optional = true }
3232
bincode = { version = "1.3.3", optional = true }
3333
serde = { version = "1", features = ["derive"] }

tools/benchmark-hooks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
rand = { version = "0.9.0", features = ["small_rng"] }
11+
rand = { version = "0.9.2", features = ["small_rng"] }
1212
getrandom = { version = "0.3.1", features = ["wasm_js"] }
1313
wasm-bindgen = "0.2.92"
1414
web-sys = { version = "0.3.70", features = ["Window"]}

tools/benchmark-ssr/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ edition = "2021"
99
yew = { path = "../../packages/yew", features = ["ssr"] }
1010
function_router = { path = "../../examples/function_router" }
1111
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
12-
average = "0.15.1"
13-
tabled = "0.18.0"
14-
indicatif = "0.17.8"
12+
average = "0.16.0"
13+
tabled = "0.20.0"
14+
indicatif = "0.18.0"
1515
serde = { version = "1.0.218", features = ["derive"] }
1616
serde_json = "1.0.139"
1717
clap = { version = "4", features = ["derive"] }

tools/build-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ publish = false
77
[dependencies]
88
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
99
regex = "1.11.1"
10-
toml = "0.8.20"
10+
toml = "0.9.5"
1111
serde = { version = "1.0.218", features = ["derive"] }

0 commit comments

Comments
 (0)