-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (73 loc) · 1.73 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (73 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# spell-checker:ignore bigdecimal
[package]
name = "uu_sort"
description = "sort ~ (uutils) sort input lines"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/sort"
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
rust-version.workspace = true
readme.workspace = true
[lints]
workspace = true
[lib]
path = "src/sort.rs"
[features]
default = ["i18n-collator"]
i18n-collator = ["uucore/i18n-collator"]
[dependencies]
bigdecimal = { workspace = true }
binary-heap-plus = { workspace = true }
clap = { workspace = true }
compare = { workspace = true }
fnv = { workspace = true }
itertools = { workspace = true }
memchr = { workspace = true }
rand = { workspace = true }
rayon = { workspace = true }
self_cell = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
uucore = { workspace = true, features = [
"fs",
"parser-size",
"version-cmp",
"i18n-decimal",
"i18n-collator",
"i18n-month",
] }
fluent = { workspace = true }
[target.'cfg(not(target_os = "redox"))'.dependencies]
ctrlc = { workspace = true }
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["resource"] }
[dev-dependencies]
divan = { workspace = true }
tempfile = { workspace = true }
uucore = { workspace = true, features = [
"benchmark",
"fs",
"parser-size",
"version-cmp",
"i18n-collator",
"i18n-month",
] }
[[bin]]
name = "sort"
path = "src/main.rs"
[[bench]]
name = "sort_bench"
harness = false
[[bench]]
name = "sort_locale_c_bench"
harness = false
[[bench]]
name = "sort_locale_utf8_bench"
harness = false
[[bench]]
name = "sort_locale_de_bench"
harness = false