Skip to content
Merged
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
416 changes: 240 additions & 176 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(wasm_bindgen_unstable_test_coverage)"
]}
[workspace.dependencies]
tokio = { version = "1.48.0" }
tokio = { version = "1.49.0" }
implicit-clone = { version = "0.6.0" }
proc-macro2 = "1"
quote = "1"
Expand All @@ -51,8 +51,8 @@ rand = "0.9"
getrandom = { version = "0.3", features = ["wasm_js"] }
instant = { version = "0.1", features = ["wasm-bindgen"] }
rustversion = "1"
strum = "0.27"
strum_macros = "0.27"
strum = "0.28"
strum_macros = "0.28"
anyhow = "1"
chrono = "0.4"
thiserror = "2.0"
Expand Down
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 @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
js-sys.workspace = true
yew = { path = "../../packages/yew", features = ["csr"] }
slab = "0.4.9"
slab = "0.4.12"
gloo.workspace = true
wasm-bindgen.workspace = true

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.44"
time = "0.3.45"
js-sys.workspace = true
web-sys = { workspace = true, features = ["Event","EventTarget","InputEvent"] }
wasm-bindgen.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ required-features = ["ssr"]
yew = { path = "../../packages/yew" }
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
uuid = { version = "1.18.1", features = ["serde"] }
uuid = { version = "1.20.0", features = ["serde"] }
futures.workspace = true

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ yew = { path = "../../packages/yew" }
function_router = { path = "../function_router" }
log = "0.4"
futures = { workspace = true, features = ["std"] }
hyper-util = "0.1.17"
hyper-util = "0.1.20"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures.workspace = true
Expand Down
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 = { workspace = true, features = ["futures"] }
route-recognizer = "0.3"
serde.workspace = true
serde_urlencoded = "0.7.1"
tracing = "0.1.40"
tracing = "0.1.44"
urlencoding = "2.1.3"

[dependencies.web-sys]
Expand Down
4 changes: 2 additions & 2 deletions packages/yew/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.84.0"
[dependencies]
console_error_panic_hook = "0.1"
gloo.workspace = true
indexmap = { version = "2.11", features = ["std"] }
indexmap = { version = "2.13", features = ["std"] }
js-sys.workspace = true
slab = "0.4"
wasm-bindgen.workspace = true
Expand All @@ -31,7 +31,7 @@ implicit-clone = { workspace = true, features = ["map"] }
base64ct = { version = "1.6.0", features = ["std"], optional = true }
bincode = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
tracing = "0.1.40"
tracing = "0.1.44"
tokise = "0.2.0"
rustversion.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion tools/benchmark-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function_router = { path = "../../examples/function_router" }
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
average = "0.16.0"
tabled = "0.20.0"
indicatif = "0.18.0"
indicatif = "0.18.4"
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
clap = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions tools/build-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ publish = false

[dependencies]
reqwest = { workspace = true, features = ["blocking", "json"] }
regex = "1.12.2"
toml = "0.9.8"
regex = "1.12.3"
toml = "1.0.3"
serde = { workspace = true, features = ["derive"] }
2 changes: 1 addition & 1 deletion tools/website-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version = "1.84.0"
yew-agent = { path = "../../packages/yew-agent/" }

[dev-dependencies]
derive_more = { version = "2.0", features = ["from"] }
derive_more = { version = "2.1", features = ["from"] }
gloo.workspace = true
gloo-net = "0.6"
js-sys.workspace = true
Expand Down
Loading