Skip to content
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
690 changes: 331 additions & 359 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ unexpected_cfgs = { level = "warn", check-cfg = [
[workspace.dependencies]
tokio = { version = "1.48.0" }
implicit-clone = { version = "0.6.0" }
proc-macro2 = "1"
quote = "1"
trybuild = { version = "1.0.114" }
syn = { version = "2" }
clap = { version = "4", features = ["derive"] }
bytes = { version = "1.11.0" }
4 changes: 2 additions & 2 deletions examples/simple_ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ reqwest = { version = "0.12.24", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
uuid = { version = "1.18.1", features = ["serde"] }
futures = "0.3"
bytes = "1.7"
bytes = { workspace = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
Expand All @@ -28,7 +28,7 @@ log = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
warp = "0.3"
clap = { version = "4", features = ["derive"] }
clap = { workspace = true }

[features]
hydration = ["yew/hydration"]
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,7 +18,7 @@ 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.17"
hyper-util = "0.1.18"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
Expand All @@ -30,7 +30,7 @@ axum = "0.8"
tower = { version = "0.5", features = ["make"] }
tower-http = { version = "0.6", features = ["fs"] }
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }
clap = {workspace = true}
hyper = { version = "1.4", features = ["server", "http1"] }

[target.'cfg(unix)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/wasi_ssr_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ yew = { path = "../../packages/yew", features = ["ssr"] }
yew-router = { path = "../../packages/yew-router" }

anyhow = "^1"
bytes = "^1"
bytes = { workspace = true }
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
lazy_static = "^1"
Expand Down
8 changes: 4 additions & 4 deletions packages/yew-agent-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ license = "MIT OR Apache-2.0"
proc-macro = true

[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true, features = ["full", "extra-traits"] }

[dev-dependencies]
rustversion = "1"
trybuild = "1"
trybuild = { workspace = true }
yew-agent = { path = "../yew-agent" }
8 changes: 4 additions & 4 deletions packages/yew-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ proc-macro = true

[dependencies]
proc-macro-error = "1"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits", "visit-mut"] }
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true, features = ["full", "extra-traits", "visit-mut"] }
once_cell = "1"
prettyplease = "0.2"
rustversion = "1"

# testing
[dev-dependencies]
trybuild = "1"
trybuild = { workspace = true }
yew = { path = "../yew" }
implicit-clone = { workspace = true }

Expand Down
8 changes: 4 additions & 4 deletions packages/yew-router-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ rust-version = "1.84.0"
proc-macro = true

[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full","extra-traits"] }
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true, features = ["full","extra-traits"] }

[dev-dependencies]
rustversion = "1"
trybuild = "1"
trybuild = { workspace = true }
yew-router = { path = "../yew-router" }
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 = "0.11"
indexmap = { version = "2.11", features = ["std"] }
indexmap = { version = "2.12.1", features = ["std"] }
js-sys = "0.3"
slab = "0.4"
wasm-bindgen = "0.2"
Expand Down Expand Up @@ -88,7 +88,7 @@ tokio = { workspace = true, features = ["macros", "rt", "time"] }
wasm-bindgen-test = "0.3"
gloo = { version = "0.11", features = ["futures"] }
wasm-bindgen-futures = "0.4"
trybuild = "1"
trybuild = { workspace = true }

[dev-dependencies.web-sys]
version = "0.3"
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 @@ -11,10 +11,10 @@ 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.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
clap = { version = "4", features = ["derive"] }
clap = { workspace = true }

[target.'cfg(unix)'.dependencies]
jemallocator = "0.5.4"
2 changes: 1 addition & 1 deletion tools/changelog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ regex = "1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde = { version = "1", features = ["derive"] }
strum = { version = "0.27", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
clap = { workspace = true }
semver = "1.0"
once_cell = "1"
Loading