[package] authors = ["Bart Olsthoorn ", "Jakub Pastuszek "] license = "MIT" name = "simhash" description = "Simhash for Rust" repository = "https://github.com/bartolsthoorn/simhash-rs.git" version = "0.2.0" [features] default = ["hasher-sip"] hasher-sip = ["siphasher"] hasher-fnv = ["fnv"] mutually_exclusive_features = ["hasher-sip", "hasher-fnv"] [[bench]] harness = false name = "simhash" [dependencies.siphasher] optional = true version = "0.2.2" [dependencies.fnv] optional = true version = "1.0.5" [dev-dependencies] bencher = "0.1.2"