├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE-MPL2 ├── README.md ├── rustfmt.toml ├── src └── lib.rs └── tests └── sanity.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/LICENSE-MPL2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | edition = "2018" 2 | merge_imports = true 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/sanity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crev-dev/recursive-digest/HEAD/tests/sanity.rs --------------------------------------------------------------------------------