# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "word-tally" version = "0.15.0" authors = ["Shannon Skipper"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Output a tally of the number of times unique words appear in source input." homepage = "https://github.com/havenwood/word-tally" readme = "README.md" keywords = [ "cli", "tally", "words", "count", ] categories = [ "command-line-utilities", "text-processing", ] license = "MIT" repository = "https://github.com/havenwood/word-tally" [profile.release] lto = true strip = true [lib] name = "word_tally" path = "src/lib.rs" [[bin]] name = "word-tally" path = "src/main.rs" [[test]] name = "lib" path = "tests/lib.rs" [[test]] name = "main" path = "tests/main.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.anyhow] version = "1.0.83" [dependencies.clap] version = "4.5.4" features = ["derive"] [dependencies.indexmap] version = "2.2.6" [dependencies.serde] version = "1.0.203" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.85" optional = true [dependencies.unescaper] version = "0.1.4" [dependencies.unicode-segmentation] version = "1.11.0" [dev-dependencies.assert_cmd] version = "2.0.14" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.predicates] version = "3.1.0" [dev-dependencies.serde] version = "1.0.203" features = ["derive"] [dev-dependencies.serde_json] version = "1.0.85" [features] default = [] serde = [ "dep:serde", "dep:serde_json", ] [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"