├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── benches └── simhash.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartolsthoorn/simhash-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartolsthoorn/simhash-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartolsthoorn/simhash-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/simhash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartolsthoorn/simhash-rs/HEAD/benches/simhash.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartolsthoorn/simhash-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------