mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
Merge pull request #3928 from niyaznigmatullin/factor_enable_union_feature_for_smallvec
factor: enable `union` feature for `smallvec`
This commit is contained in:
commit
7b4dcc3748
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
|||
coz = { version = "0.1.3", optional = true }
|
||||
num-traits = "0.2.15" # Needs at least version 0.2.15 for "OverflowingAdd"
|
||||
rand = { version = "0.8", features = ["small_rng"] }
|
||||
smallvec = "1.9" # TODO(nicoo): Use `union` feature, requires Rust 1.49 or later.
|
||||
smallvec = { version = "1.9", features = ["union"] }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore" }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Reference in a new issue