Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the cargo-deps group across 1 directory with 41 updates #3784

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
450 changes: 253 additions & 197 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/dyn_create_destroy_apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gloo = "0.11"
wasm-bindgen = "0.2"

[dependencies.web-sys]
version = "0.3.70"
version = "0.3.76"
features = [
"Document",
"Element",
Expand Down
2 changes: 1 addition & 1 deletion examples/keyed_list/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
fake = "2.10.0"
fake = "3.0.1"
getrandom = { version = "0.2", features = ["js"] }
instant = { version = "0.1", features = ["wasm-bindgen"] }
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion examples/password_strength/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
yew = { path = "../../packages/yew", features = ["csr"] }
zxcvbn = "3.1.0"
time = "0.3.36"
time = "0.3.37"
js-sys = "0.3.70"
web-sys = { version = "0.3", features = ["Event","EventTarget","InputEvent"] }
wasm-bindgen = "0.2"
Expand Down
10 changes: 5 additions & 5 deletions examples/simple_ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ required-features = ["ssr"]

[dependencies]
yew = { path = "../../packages/yew" }
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
uuid = { version = "1.10.0", features = ["serde"] }
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.216", features = ["derive"] }
uuid = { version = "1.11.0", features = ["serde"] }
futures = "0.3"
bytes = "1.7"
bytes = "1.9"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"
log = "0.4"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.40.0", features = ["full"] }
tokio = { version = "1.42.0", features = ["full"] }
warp = "0.3"
clap = { version = "4", features = ["derive"] }

Expand Down
6 changes: 3 additions & 3 deletions examples/ssr_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ yew = { path = "../../packages/yew" }
function_router = { path = "../function_router" }
log = "0.4"
futures = { version = "0.3", features = ["std"], default-features = false }
hyper-util = "0.1.9"
hyper-util = "0.1.10"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.40.0", features = ["full"] }
tokio = { version = "1.42.0", features = ["full"] }
axum = "0.7"
tower = { version = "0.5", features = ["make"] }
tower-http = { version = "0.6", features = ["fs"] }
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }
hyper = { version = "1.4", features = ["server", "http1"] }
hyper = { version = "1.5", features = ["server", "http1"] }

[target.'cfg(unix)'.dependencies]
jemallocator = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion examples/web_worker_fib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = [ "HtmlInputElement" ] }
serde = { version = "1", features = ["derive"] }
postcard = "1.0.10"
postcard = "1.1.1"
4 changes: 2 additions & 2 deletions examples/web_worker_prime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
[dependencies]
yew-agent = { path = "../../packages/yew-agent" }
yew = { path = "../../packages/yew", features = ["csr"] }
futures = "0.3.30"
futures = "0.3.31"
primes = "0.4.0"
serde = { version = "1.0.210", features = ["derive"] }
serde = { version = "1.0.216", features = ["derive"] }
2 changes: 1 addition & 1 deletion packages/yew-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ futures = "0.3"
yew-agent-macro = { version = "0.2", path = "../yew-agent-macro" }

[dev-dependencies]
serde = "1.0.210"
serde = "1.0.216"
2 changes: 1 addition & 1 deletion packages/yew-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gloo = { version = "0.11", features = ["futures"] }
route-recognizer = "0.3"
serde = "1"
serde_urlencoded = "0.7.1"
tracing = "0.1.40"
tracing = "0.1.41"
urlencoding = "2.1.3"

[dependencies.web-sys]
Expand Down
12 changes: 6 additions & 6 deletions packages/yew/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ js-sys = "0.3"
slab = "0.4"
wasm-bindgen = "0.2"
yew-macro = { version = "^0.21.0", path = "../yew-macro" }
thiserror = "1.0"
thiserror = "2.0"
futures = { version = "0.3", default-features = false, features = ["std"] }
html-escape = { version = "0.2.13", optional = true }
implicit-clone = { version = "0.5", features = ["map"] }
base64ct = { version = "1.6.0", features = ["std"], optional = true }
bincode = { version = "1.3.3", optional = true }
serde = { version = "1", features = ["derive"] }
tracing = "0.1.40"
tokise = "0.1.0"
tracing = "0.1.41"
tokise = "0.2.0"
rustversion = "1"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# We still need tokio as we have docs linked to it.
tokio = { version = "1.40", features = ["rt"] }
tokio = { version = "1.42", features = ["rt"] }

[dependencies.web-sys]
version = "^0.3.70"
version = "^0.3.76"
features = [
"AnimationEvent",
"Document",
Expand Down Expand Up @@ -79,7 +79,7 @@ features = [
]

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1.40", features = ["full"] }
tokio = { version = "1.42", features = ["full"] }

[target.'cfg(all(target_arch = "wasm32", target_os = "wasi"))'.dependencies]
tokio = { version = "1.40", features = ["macros", "rt", "time"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/benchmark-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ name = "vnode"
harness = false

[dependencies]
divan = "0.1.14"
divan = "0.1.17"
yew = { path = "../../packages/yew" }
4 changes: 2 additions & 2 deletions tools/benchmark-hooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ crate-type = ["cdylib"]
[dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
getrandom = { version = "0.2.15", features = ["js"] }
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.70", features = ["Window"]}
wasm-bindgen = "0.2.99"
web-sys = { version = "0.3.76", features = ["Window"]}
yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" }

[package.metadata.wasm-pack.profile.release]
Expand Down
10 changes: 5 additions & 5 deletions tools/benchmark-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ edition = "2021"
[dependencies]
yew = { path = "../../packages/yew", features = ["ssr"] }
function_router = { path = "../../examples/function_router" }
tokio = { version = "1.40", features = ["full"] }
tokio = { version = "1.42", features = ["full"] }
average = "0.15.1"
tabled = "0.16.0"
indicatif = "0.17.8"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
tabled = "0.17.0"
indicatif = "0.17.9"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
clap = { version = "4", features = ["derive"] }

[target.'cfg(unix)'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions tools/benchmark-struct/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ crate-type = ["cdylib"]
[dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
getrandom = { version = "0.2.15", features = ["js"] }
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.70", features = ["Window"]}
wasm-bindgen = "0.2.99"
web-sys = { version = "0.3.76", features = ["Window"]}
yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" }

[package.metadata.wasm-pack.profile.release]
Expand Down
2 changes: 1 addition & 1 deletion tools/website-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ weblog = "0.3.0"
yew = { path = "../../packages/yew/", features = ["ssr", "csr"] }
yew-autoprops = "0.4.1"
yew-router = { path = "../../packages/yew-router/" }
tokio = { version = "1.40.0", features = ["rt", "macros"] }
tokio = { version = "1.42.0", features = ["rt", "macros"] }

[dev-dependencies.web-sys]
version = "0.3"
Expand Down
Loading