# 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" rust-version = "1.74.1" name = "cuniq" version = "1.0.3" authors = ["Michael Ripley "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "Count unique lines" readme = "README.md" keywords = [ "count", "unique", "cardinality", ] categories = ["command-line-utilities"] license = "GPL-3.0-or-later" repository = "https://github.com/zkxs/cuniq" [profile.release] lto = "fat" codegen-units = 1 strip = true [profile.release-optimized-debug] debug = 2 inherits = "release" strip = false [[bin]] name = "cuniq" path = "src/main.rs" [[bench]] name = "benches" path = "benches/benches.rs" harness = false required-features = ["bench"] [dependencies.bstr] version = "1" [dependencies.cfg-if] version = "1" [dependencies.clap] version = "4" features = [ "derive", "wrap_help", ] [dependencies.line_cardinality] version = "2" features = [ "ahash", "file", "hash-only", ] default-features = false [dev-dependencies.criterion] version = "0.5" [dev-dependencies.memmap2] version = "0.9" [features] bench = ["memmap"] compile-time-rng = ["line_cardinality/compile-time-rng"] default = [ "memmap", "compile-time-rng", ] memmap = ["line_cardinality/memmap"]