Skip to content

Commit

Permalink
Fix deprecated default_features
Browse files Browse the repository at this point in the history
`default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
  • Loading branch information
raimannma committed Sep 19, 2024
1 parent a953546 commit c4f9de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies.cached]
path ="../.."
default_features = false
path = "../.."
default-features = false
features = ["proc_macro", "wasm", "async"]

[dependencies.chrono]
Expand Down

0 comments on commit c4f9de8

Please sign in to comment.