├── .gitignore ├── Cargo.toml ├── readme.md └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogerlad/crypt-ids/HEAD/Cargo.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogerlad/crypt-ids/HEAD/readme.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boogerlad/crypt-ids/HEAD/src/lib.rs --------------------------------------------------------------------------------