├── .github └── workflows │ └── clippy.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── README.tpl ├── benches └── bench.rs ├── ci └── pr-check-fix.sh ├── src ├── lib.rs ├── louds.rs └── louds │ └── louds_impl.rs └── tests └── test.rs /.github/workflows/clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/.github/workflows/clippy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | 5 | # used for debugging with VSCode 6 | src/main.rs 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/README.md -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/README.tpl -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /ci/pr-check-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/ci/pr-check-fix.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/louds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/src/louds.rs -------------------------------------------------------------------------------- /src/louds/louds_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/src/louds/louds_impl.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/louds-rs/HEAD/tests/test.rs --------------------------------------------------------------------------------