[package] name = "dedup-it" version = "0.1.0" edition = "2021" license = "MIT" description = "A CLI app to dedup lines in a file" homepage = "https://github.com/race604/dedup" repository = "https://github.com/race604/dedup" readme = "README.md" authors = ["Race604 "] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "3.2.2", features = ["derive"] } clap-verbosity-flag = "1.0.0" anyhow = "1.0" log = "0.4.17" env_logger = "0.9.0" odht = "0.3.1" rand = "0.8.5" [[bin]] bench = false path = "src/main.rs" name = "dedup"