├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── README.tpl ├── benches └── bench.rs ├── ci └── pr-check-fix.sh ├── src ├── fst.rs ├── fst │ ├── fst.rs │ └── fst_builder.rs └── lib.rs └── tests └── test.rs /.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/fst-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/README.md -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/README.tpl -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /ci/pr-check-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/ci/pr-check-fix.sh -------------------------------------------------------------------------------- /src/fst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/src/fst.rs -------------------------------------------------------------------------------- /src/fst/fst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/src/fst/fst.rs -------------------------------------------------------------------------------- /src/fst/fst_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/src/fst/fst_builder.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laysakura/fst-rs/HEAD/tests/test.rs --------------------------------------------------------------------------------