Skip to content

Commit e8239e3

Browse files
committed
Update yew to 0.18
- Update other dependencies - Switch to edition 2021 - Optimize `RowData::new` to make a single allocation
1 parent 627b3d0 commit e8239e3

File tree

5 files changed

+188
-142
lines changed

5 files changed

+188
-142
lines changed

frameworks/keyed/yew/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
name = "js-framework-benchmark-yew"
33
version = "1.0.0"
44
authors = ["Isamu Mogi <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[lib]
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
rand = { version = "0.7.3", features = ["wasm-bindgen", "small_rng"] }
12-
wasm-bindgen = "0.2.62"
13-
yew = "0.17.2"
11+
rand = { version = "0.8.4", features = ["small_rng"] }
12+
getrandom = { version = "0.2.1", features = ["js"] }
13+
wasm-bindgen = "0.2.78"
14+
yew = "0.18"
1415

1516
[profile.release]
1617
lto = true

0 commit comments

Comments
 (0)