Skip to content

Commit

Permalink
chore: fix Cargo warnings (#108)
Browse files Browse the repository at this point in the history
The following warnings are fixed by these changes:
- warning: version requirement `0.9.34+deprecated` for dependency
`serde_yaml` includes semver metadata which will be ignored, removing
the metadata is recommended to avoid confusion
- warning: `default_features` is deprecated in favor of
`default-features` and will not work in the 2024 edition (in the `axum`
dependency)
  • Loading branch information
augustoccesar authored Oct 22, 2024
1 parent 5232118 commit 7193cf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linkup-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ reqwest = { version = "0.12.4", default-features = false, features = [
] }
serde = "1.0.210"
serde_json = "1.0.129"
serde_yaml = "0.9.34+deprecated"
serde_yaml = "0.9.34"
thiserror = "1.0.64"
url = { version = "2.5.2", features = ["serde"] }
base64 = "0.22.1"
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
axum = { version = "0.7.5", features = ["json"], default_features = false }
axum = { version = "0.7.5", features = ["json"], default-features = false }
console_error_panic_hook = { version = "0.1.7" }
futures = "0.3.31"
getrandom = { version = "0.2.15", features = ["js"] }
Expand Down

0 comments on commit 7193cf3

Please sign in to comment.