Skip to content
Closed
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
407 changes: 268 additions & 139 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/function_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
lipsum = "0.9.1"
log = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
rand = { version = "0.9", features = ["small_rng"] }
yew = { path = "../../packages/yew" }
yew-router = { path = "../../packages/yew-router" }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/immutable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
implicit-clone = { version = "0.5", features = ["map"] }
implicit-clone = { version = "0.6", features = ["map"] }
wasm-bindgen = "0.2"
web-sys = "0.3"
yew = { path = "../../packages/yew", features = ["csr"] }
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 = "4.0.0"
fake = "4.3.0"
getrandom = { version = "0.3", features = ["wasm_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.41"
js-sys = "0.3.70"
web-sys = { version = "0.3", features = ["Event","EventTarget","InputEvent"] }
wasm-bindgen = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ instant = { version = "0.1", features = ["wasm-bindgen"] }
lipsum = "0.9.1"
log = "0.4"
getrandom = { version = "0.2", features = ["js"] }
rand = { version = "0.8", features = ["small_rng"] }
rand = { version = "0.9", features = ["small_rng"] }
wasm-logger = "0.2"
yew = { path = "../../packages/yew", features = ["csr"] }
yew-router = { path = "../../packages/yew-router" }
Expand Down
8 changes: 4 additions & 4 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"] }
reqwest = { version = "0.12.15", features = ["json"] }
serde = { version = "1.0.218", features = ["derive"] }
uuid = { version = "1.14.0", features = ["serde"] }
uuid = { version = "1.16.0", features = ["serde"] }
futures = "0.3"
bytes = "1.7"
bytes = "1.10"

[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.43.1", features = ["full"] }
tokio = { version = "1.44.2", features = ["full"] }
warp = "0.3"
clap = { version = "4", features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions examples/ssr_router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ 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.11"

[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.43.1", features = ["full"] }
tokio = { version = "1.44.2", features = ["full"] }
axum = "0.8"
tower = { version = "0.5", features = ["make"] }
tower-http = { version = "0.6", features = ["fs"] }
Expand Down
12 changes: 6 additions & 6 deletions packages/yew/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ yew-macro = { version = "^0.21.0", path = "../yew-macro" }
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 }
implicit-clone = { version = "0.6", features = ["map"] }
base64ct = { version = "1.7.3", features = ["std"], optional = true }
bincode = { version = "2.0.1", optional = true }
serde = { version = "1", features = ["derive"] }
tracing = "0.1.40"
tokise = "0.2.0"
Expand All @@ -40,7 +40,7 @@ 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.43", features = ["rt"] }
tokio = { version = "1.44", features = ["rt"] }

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

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

[target.'cfg(all(target_arch = "wasm32", target_os = "wasi"))'.dependencies]
tokio = { version = "1.40", features = ["macros", "rt", "time"] }
tokio = { version = "1.44", features = ["macros", "rt", "time"] }

[dev-dependencies]
wasm-bindgen-test = "0.3"
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.18"
yew = { path = "../../packages/yew" }
6 changes: 3 additions & 3 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.43", features = ["full"] }
average = "0.15.1"
tokio = { version = "1.44", features = ["full"] }
average = "0.16.0"
tabled = "0.18.0"
indicatif = "0.17.8"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.139"
serde_json = "1.0.140"
clap = { version = "4", features = ["derive"] }

[target.'cfg(unix)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tools/build-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
reqwest = { version = "0.12.15", features = ["blocking", "json"] }
regex = "1.11.1"
toml = "0.8.20"
serde = { version = "1.0.218", 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 @@ -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.43.1", features = ["rt", "macros"] }
tokio = { version = "1.44.2", features = ["rt", "macros"] }

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