1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 04:57:45 +00:00

sort: Add a GNU-style Random Sorter (#1922)

This commit is contained in:
electricboogie 2021-03-29 06:05:52 -05:00 committed by GitHub
parent 8cc7a90d7c
commit da5f2f3a6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 261 additions and 44 deletions

19
Cargo.lock generated
View file

@ -1317,6 +1317,12 @@ dependencies = [
"maybe-uninit",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
version = "0.8.0"
@ -1443,6 +1449,17 @@ dependencies = [
"serde_json",
]
[[package]]
name = "twox-hash"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
dependencies = [
"cfg-if 0.1.10",
"rand 0.7.3",
"static_assertions",
]
[[package]]
name = "typenum"
version = "1.13.0"
@ -2200,7 +2217,9 @@ version = "0.0.4"
dependencies = [
"clap",
"itertools 0.8.2",
"rand 0.7.3",
"semver",
"twox-hash",
"uucore",
"uucore_procs",
]