-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (46 loc) · 1.26 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
[package]
authors = ["Shannon Skipper"]
categories = ["command-line-utilities", "text-processing"]
description = "Output a tally of the number of times unique words appear in source input."
edition = "2021"
homepage = "https://github.com/havenwood/word-tally"
keywords = ["cli", "tally", "words", "count"]
license = "MIT"
name = "word-tally"
repository = "https://github.com/havenwood/word-tally"
version = "0.14.0"
[dependencies]
anyhow = "1.0.83"
clap = { version = "4.5.4", features = ["derive"] }
indexmap = "2.2.6"
serde = { version = "1.0.203", features = ["derive"], optional = true }
serde_json = { version = "1.0.85", optional = true }
unescaper = "0.1.4"
unicode-segmentation = "1.11.0"
[features]
default = []
serde = ["dep:serde", "dep:serde_json"]
[dev-dependencies]
assert_cmd = "2.0.14"
criterion = "0.5.1"
predicates = "3.1.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.85"
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true
strip = true
[lints.clippy]
cargo = "warn"
nursery = "warn"
[lints.rust]
future_incompatible = "warn"
let_underscore = "warn"
nonstandard_style = "warn"
rust_2018_compatibility = "warn"
rust_2018_idioms = "warn"
rust_2021_compatibility = "warn"
rust_2024_compatibility = "warn"
unused = "warn"