diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-11-26 17:55:07 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-11-26 17:55:07 +0100 |
commit | 74f2f596ef968bcbe7a2bc52c41127ade014cf9a (patch) | |
tree | 40efb0718a90bc8dbc699cc037385593b8a77f23 | |
parent | Indexer: Stem words prior to adding/searching them (diff) | |
download | OSSE-74f2f596ef968bcbe7a2bc52c41127ade014cf9a.tar.gz OSSE-74f2f596ef968bcbe7a2bc52c41127ade014cf9a.tar.bz2 OSSE-74f2f596ef968bcbe7a2bc52c41127ade014cf9a.zip |
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | frontend/Cargo.toml | 6 |
2 files changed, 15 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5b9513e..2890649 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3129,8 +3129,9 @@ dependencies = [ [[package]] name = "yew" -version = "0.19.3" -source = "git+https://github.com/yewstack/yew/#da09755c27bfeb113e0c4b1096214a826f1e8388" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dbecfe44343b70cc2932c3eb445425969ae21754a8ab3a0966981c1cf7af1cc" dependencies = [ "console_error_panic_hook", "futures", @@ -3153,8 +3154,9 @@ dependencies = [ [[package]] name = "yew-macro" -version = "0.19.3" -source = "git+https://github.com/yewstack/yew/#da09755c27bfeb113e0c4b1096214a826f1e8388" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b64c253c1d401f1ea868ca9988db63958cfa15a69f739101f338d6f05eea8301" dependencies = [ "boolinator", "once_cell", @@ -3167,8 +3169,9 @@ dependencies = [ [[package]] name = "yew-router" -version = "0.16.0" -source = "git+https://github.com/yewstack/yew/#da09755c27bfeb113e0c4b1096214a826f1e8388" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "426ee0486d2572a6c5e39fbdbc48b58d59bb555f3326f54631025266cf04146e" dependencies = [ "gloo", "js-sys", @@ -3184,8 +3187,9 @@ dependencies = [ [[package]] name = "yew-router-macro" -version = "0.16.0" -source = "git+https://github.com/yewstack/yew/#da09755c27bfeb113e0c4b1096214a826f1e8388" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b249cdb39e0cddaf0644dedc781854524374664793479fdc01e6a65d6e6ae3" dependencies = [ "proc-macro2", "quote", diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index 5b76828..fb92dd9 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] # this is the development version of Yew -yew = { git = "https://github.com/yewstack/yew/", features = ["csr"] } -yew-router = { git = "https://github.com/yewstack/yew.git" } +yew = { version = "0.20", features = ["csr"] } +yew-router = { version = "0.17" } gloo = "0.8.0" web-sys = "0.3.60" wasm-bindgen = "0.2.83" @@ -17,4 +17,4 @@ wasm-bindgen-futures = "0.4" itertools = "0.10.5" urlencoding = "2.1.2" stylist = "0.10" -lib = { path = "../lib" } \ No newline at end of file +lib = { path = "../lib" } |