-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (59 loc) · 1.49 KB
/
Cargo.toml
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
[package]
name = "wz"
version = "1.0.3"
edition = "2021"
license = "MIT"
description = "Count words, fast"
homepage = "https://github.com/Altair-Bueno/wz"
repository = "https://github.com/Altair-Bueno/wz"
readme = "README.md"
keywords = ["wc", "count", "words", "bytes", "lines"]
categories = ["command-line-utilities", "filesystem", "text-processing"]
[package.metadata.docs.rs]
all-features = true
[profile.release]
opt-level = 2
debug = false
lto = "fat"
panic = "abort"
codegen-units = 1
strip = true
[dependencies]
wz-utf8 = { workspace = true }
wz-core = { workspace = true }
wz-conf = { workspace = true }
wz-fmt = { workspace = true }
bumpalo = { workspace = true }
rayon = { workspace = true }
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
rayon = "1.6.0"
bumpalo = "3.11.0"
terminal_size = "0.2.3"
tabled = "0.10.0"
serde_json = "1.0.85"
bytecount = "0.6.3"
memchr = "2"
wz-utf8 = { path = "crates/wz-utf8", version = "1.0.0", features = ["runtime-dispatch-simd"] }
wz-core = { path = "crates/wz-core", version = "1.0.0" }
wz-conf = { path = "crates/wz-conf", version = "1.0.0" }
wz-fmt = { path = "crates/wz-fmt", version = "1.0.0" }
# Dev dependencies
criterion = { version = "0.5.1", features = ["html_reports"] }
rstest = "0.18.1"
speculoos = "0.11.0"
[workspace.dependencies.serde]
version = "1.0.148"
features = ["derive"]
[workspace.dependencies.clap]
version = "4.0"
default-features = false
features = [
"std",
"color",
"suggestions",
"derive",
"wrap_help"
]