-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,11 +64,11 @@ unicode-width = "0.1" | |
textwrap = "0.11" | ||
indexmap = "1.0" | ||
os_str_bytes = "2.1" | ||
vec_map = "0.8" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kbknapp
Member
|
||
strsim = { version = "0.10", optional = true } | ||
yaml-rust = { version = "0.4.1", optional = true } | ||
atty = { version = "0.2", optional = true } | ||
termcolor = { version = "1.1", optional = true } | ||
vec_map = { version = "0.8", optional = true } | ||
term_size = { version = "1.0.0-beta1", optional = true } | ||
lazy_static = { version = "1", optional = true } | ||
clap_derive = { path = "./clap_derive", version = "3.0.0-beta.1", optional = true } | ||
|
@@ -80,7 +80,7 @@ version-sync = "0.8" | |
criterion = { git = "git://github.com/pksunkara/criterion.rs", version = "0.3" } | ||
|
||
[features] | ||
default = ["suggestions", "color", "vec_map", "derive", "std", "cargo"] | ||
default = ["suggestions", "color", "derive", "std", "cargo"] | ||
std = [] # support for no_std in a backwards-compatible way | ||
suggestions = ["strsim"] | ||
color = ["atty", "termcolor"] | ||
|
This file was deleted.
@CreepySkeleton @kbknapp Could you say more about why
vec_map
was made a required dependency? I've turned it off in ripgrep and haven't missed any extra performance gains that it is supposed to provide. Could we please retain the ability to turn it off?