Skip to content

Commit

Permalink
Cargo update seems to work but shows a bunch of "unchanged dependencies"
Browse files Browse the repository at this point in the history
```
» cargo update
    Updating crates.io index
     Locking 0 packages to latest compatible versions
note: pass `--verbose` to see 70 unchanged dependencies behind latest
````
  • Loading branch information
BanjoFox committed Oct 11, 2024
1 parent 60e84e0 commit bb93a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aardwolf-yew-frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yew = { version = "0.21.0", features = ["csr"]}
yew-router = "0.18.0"
yew = { version = "^0.21.0", features = ["csr"]}
yew-router = "^0.18.0"
wasm-bindgen = "0.2.93" # Easy support for interacting between JS and Rust.
log = {version = "0.4.22", features = ["std", "serde"]} # Also used by main app for logging
wasm-logger = "0.2.0" # Using this instead of Gloo because we already use log
Expand Down

0 comments on commit bb93a12

Please sign in to comment.