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
152 changes: 60 additions & 92 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(wasm_bindgen_unstable_test_coverage)"
]}
[workspace.dependencies]
tokio = { version = "1.50.0" }
tokio = { version = "1.52.3" }
implicit-clone = { version = "0.6.0" }
proc-macro2 = "1"
quote = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/axum_ssr_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tower = { version = "0.5", features = ["make"] }
tower-http = { version = "0.6", features = ["fs", "cors"] }
env_logger = "0.11"
clap = { workspace = true }
hyper = { version = "1.4", features = ["server", "http1"] }
hyper = { version = "1.10", features = ["server", "http1"] }

[target.'cfg(unix)'.dependencies]
jemallocator = "0.5"
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 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = { path = "../../packages/yew", features = ["csr"] }
zxcvbn = "3.1.0"
zxcvbn = "3.1.1"
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 @@ -17,7 +17,7 @@ required-features = ["ssr"]
yew = { path = "../../packages/yew" }
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
uuid = { version = "1.20.0", features = ["serde"] }
uuid = { version = "1.23.2", features = ["serde"] }
futures.workspace = true

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions packages/yew-link/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
gloo-net = { version = "0.6", features = ["http"] }
lru = "0.16"
gloo-net = { version = "0.7", features = ["http"] }
lru = "0.18"
wasm-bindgen-futures = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/yew/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version.workspace = true
[dependencies]
console_error_panic_hook = "0.1"
gloo.workspace = true
indexmap = { version = "2.13", features = ["std"] }
indexmap = { version = "2.14", features = ["std"] }
js-sys.workspace = true
slab = "0.4"
wasm-bindgen.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions tools/benchmark-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ rust-version.workspace = true
yew = { path = "../../packages/yew", features = ["ssr"] }
function_router = { path = "../../examples/function_router" }
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
average = "0.16.0"
tabled = "0.20.0"
average = "0.17.0"
tabled = "0.21.0"
indicatif = "0.18.4"
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
Expand Down
Loading