diff --git a/crates/dictgen/Cargo.toml b/crates/dictgen/Cargo.toml index 648a746..3045ba3 100644 --- a/crates/dictgen/Cargo.toml +++ b/crates/dictgen/Cargo.toml @@ -13,8 +13,8 @@ include.workspace = true [features] default = ["std"] std = [] -codegen = ["std", "phf_codegen"] -map = ["phf", "phf_shared"] +codegen = ["std", "dep:phf_codegen"] +map = ["dep:phf", "dep:phf_shared"] [dependencies] unicase = "2.6" diff --git a/crates/typos-cli/Cargo.toml b/crates/typos-cli/Cargo.toml index ad938d4..194dd95 100644 --- a/crates/typos-cli/Cargo.toml +++ b/crates/typos-cli/Cargo.toml @@ -32,8 +32,8 @@ pre-release-replacements = [ [features] default = ["dict", "vars"] -dict = ["typos-dict"] -vars = ["typos-vars"] +dict = ["dep:typos-dict"] +vars = ["dep:typos-vars"] [[bin]] diff --git a/crates/varcon-core/Cargo.toml b/crates/varcon-core/Cargo.toml index e675955..a55eacf 100644 --- a/crates/varcon-core/Cargo.toml +++ b/crates/varcon-core/Cargo.toml @@ -12,8 +12,8 @@ include.workspace = true [features] default = [] -parser = ["winnow"] -flags = ["enumflags2"] +parser = ["dep:winnow"] +flags = ["dep:enumflags2"] [dependencies] winnow = { version = "0.4.9", optional = true }