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
1,143 changes: 628 additions & 515 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ version = "0.3"
features = ["console", "Document"]

[dev-dependencies]
wasm-bindgen-test = "0.3.4"
wasm-bindgen-test = "0.3.55"
gloo-timers = { version = "0.3.0", path = "../timers" }
4 changes: 2 additions & 2 deletions crates/events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ version = "0.3.31"
features = ["Event", "EventTarget", "AddEventListenerOptions"]

[dev-dependencies]
js-sys = "0.3.31"
js-sys = "0.3.82"
futures = "0.3"
wasm-bindgen-test = "0.3.4"
wasm-bindgen-test = "0.3.55"

[dev-dependencies.web-sys]
version = "0.3.31"
Expand Down
6 changes: 3 additions & 3 deletions crates/file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ features = ["futures"]

[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3.31"
js-sys = "0.3.82"
gloo-events = { path = "../events", version = "0.2" }
mime = { version = "0.3.13", optional = true }
futures-channel = { version = "0.3", optional = true }
Expand All @@ -37,9 +37,9 @@ features = [

[dev-dependencies]
futures_rs = { version = "0.3", package = "futures" }
wasm-bindgen-test = "0.3.4"
wasm-bindgen-test = "0.3.55"
wasm-bindgen-futures = "0.4"
chrono = { version = "0.4.10", features = ["wasmbind"] }
chrono = { version = "0.4.42", features = ["wasmbind"] }

[dev-dependencies.web-sys]
version = "0.3.31"
Expand Down
8 changes: 4 additions & 4 deletions crates/history/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ rust-version = "1.64"
gloo-utils = { version = "0.2.0", path = "../utils" }
gloo-events = { version = "0.2.0", path = "../events" }
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.6.0"
serde-wasm-bindgen = "0.6.5"
serde_urlencoded = { version = "0.7", optional = true }
thiserror = { version = "1.0", optional = true }
wasm-bindgen = "0.2.88"
thiserror = { version = "2.0", optional = true }
wasm-bindgen = "0.2.105"

[dependencies.web-sys]
version = "0.3"
features = ["History", "Window", "Location", "Url"]

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.10", features = ["js"] }
getrandom = { version = "0.2.16", features = ["js"] }

[dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions crates/net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ futures-core = { version = "0.3", optional = true }
futures-sink = { version = "0.3", optional = true }
futures-io = { version = "0.3", optional = true }

thiserror = "1.0"
thiserror = "2.0"

serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }

futures-channel = { version = "0.3", optional = true }
pin-project = { version = "1.0", optional = true }
http = "1.0"
pin-project = { version = "1.1", optional = true }
http = "1.3"

[dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.64"
wasm-bindgen = "0.2"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
thiserror = "2.0"
js-sys = "0.3"
gloo-utils = { version = "0.2", path = "../utils" }
[dependencies.web-sys]
Expand Down
6 changes: 3 additions & 3 deletions crates/timers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ features = ["futures"]

[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3.31"
js-sys = "0.3.82"
futures-core = { version = "0.3", optional = true }
futures-channel = { version = "0.3", optional = true }

Expand All @@ -26,6 +26,6 @@ futures = ["futures-core", "futures-channel"]


[dev-dependencies]
wasm-bindgen-futures = "0.4.4"
wasm-bindgen-test = "0.3.4"
wasm-bindgen-futures = "0.4.55"
wasm-bindgen-test = "0.3.55"
futures-util = "0.3"
2 changes: 1 addition & 1 deletion crates/worker-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.64"
proc-macro = true

[dependencies]
proc-macro-crate = "1.2.1"
proc-macro-crate = "3.2.0"
proc-macro2 = "1.0.47"
quote = "1.0.21"
syn = { version = "2.0.15", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rustdoc-args = ["--cfg", "docsrs"]


[dependencies]
bincode = "1"
bincode = "2"
gloo-utils = { path = "../utils", version = "0.2" }
gloo-worker-macros = { path = "../worker-macros", version = "0.1" }
js-sys = "0.3"
Expand All @@ -27,7 +27,7 @@ serde = { version = "1", features = ["derive"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = { version = "0.4" }
futures = { version = "0.3", features = ["std"], default-features = false }
thiserror = "1.0.37"
thiserror = "2.0.17"

[dependencies.web-sys]
version = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions examples/clock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ crate-type = ["cdylib"]

[dependencies]
gloo = { path = "../..", features = ["futures"] }
wasm-bindgen = "0.2.54"
wasm-bindgen-futures = "0.4.4"
wasm-bindgen = "0.2.105"
wasm-bindgen-futures = "0.4.55"
futures-util = "0.3"
chrono = { version = "0.4.10", features = ["wasmbind"] }
chrono = { version = "0.4.42", features = ["wasmbind"] }
console_error_panic_hook = "0.1.6"

[dependencies.web-sys]
Expand Down
16 changes: 8 additions & 8 deletions examples/file-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ publish = false
[dependencies]
# We use the gloo-worker directly to avoid dependency conflicts as Yew also uses gloo.
gloo-worker = { path = "../../crates/worker" }
serde = "1.0.163"
serde = "1.0.228"
web-sys = { version = "0.3.63", features = ["File", "Blob", "ReadableStream"] }
wasm-bindgen-futures = { version = "0.4" }
wasm-streams = "0.3.0"
wasm-bindgen = "0.2.86"
futures = "0.3.28"
sha2 = "0.10.8"
wasm-streams = "0.4.2"
wasm-bindgen = "0.2.105"
futures = "0.3.31"
sha2 = "0.10.9"
console_error_panic_hook = "0.1.7"
yew = { version = "0.20.0", features = ["csr"] }
serde-wasm-bindgen = "0.6.0"
js-sys = "0.3.63"
yew = { version = "0.21.0", features = ["csr"] }
serde-wasm-bindgen = "0.6.5"
js-sys = "0.3.82"
hex = "0.4.3"
6 changes: 3 additions & 3 deletions examples/markdown/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ rust-version = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pulldown-cmark = { version = "0.9.1", default-features = false }
pulldown-cmark = { version = "0.13.0", default-features = false }
gloo = { path = "../..", features = ["futures"] }

console_error_panic_hook = "0.1.7"
wasm-bindgen = "0.2"
wasm-bindgen-futures = { version = "0.4" }
js-sys = "0.3"
wasm-bindgen-test = "0.3.4"
wasm-bindgen-test = "0.3.55"
futures = "0.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1", features = ["full"] }
warp = "0.3"
warp = "0.4"
12 changes: 6 additions & 6 deletions examples/prime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ rust-version = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures = "0.3.25"
futures = "0.3.31"
gloo = { path = "../..", features = ["futures"] }
primes = "0.3.0"
wasm-bindgen-futures = "0.4.33"
primes = "0.4.0"
wasm-bindgen-futures = "0.4.55"
console_error_panic_hook = "0.1.7"
serde = { version = "1.0.147", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1", features = ["full"] }
warp = "0.3"
warp = "0.4"

[dev-dependencies]
wasm-bindgen-test = "0.3.36"
wasm-bindgen-test = "0.3.55"
Loading