Skip to content

Commit

Permalink
chore: Cargo.toml now uses explicit dep: in features
Browse files Browse the repository at this point in the history
  • Loading branch information
leontoeides committed Oct 6, 2024
1 parent 6b4853c commit f220b26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ repository = "https://github.com/leontoeides/indicium"
rust-version = "1.62.1"

[features]
default = [ "simple", "strsim", "ahash" ]
default = [ "simple", "dep:strsim", "dep:ahash" ]
simple = []
select2 = [ "simple", "serde" ]
fuzzy = [ "strsim" ] # Deprecated feature. Redirects to `strsim` feature.
select2 = [ "simple", "dep:serde" ]
fuzzy = [ "dep:strsim" ] # Deprecated feature. Redirects to `strsim` feature.
ahash = [ "dep:ahash" ]
eddie = [ "dep:eddie" ]
gxhash = [ "dep:gxhash" ]
Expand Down

0 comments on commit f220b26

Please sign in to comment.