[package] name = "simbiota-tlsh" version = "1.1.0" edition = "2021" # publishing description = "A pure-rust implementation of Trendmicro's TLSH algorithm, featuring the same optimizations found in the reference implementation." authors = ["Ukatemi Technologies Ltd"] license-file = "LICENSE" homepage = "https://simbiota.io" repository = "https://github.com/simbiota/simbiota-tlsh" readme = "README.md" keywords = ["tlsh", "similarity-hash", "hash", "locality", "locality-sensitive"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "tlsh" path = "src/bin/cli.rs" [[bin]] name = "speedtest" path = "src/bin/speedtest.rs" [dependencies] clap = { version = "4.5.11", features = ["derive"] } cpufeatures = "0.2.12" ctor = "0.2.8" hex="0.4.3" [profile.release] lto = true opt-level = 3 codegen-units = 1 overflow-checks = false