├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── vs_hashmap.rs ├── examples ├── debug.rs └── json.rs └── src ├── lib.rs ├── serde_tests.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/README.md -------------------------------------------------------------------------------- /benches/vs_hashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/benches/vs_hashmap.rs -------------------------------------------------------------------------------- /examples/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/examples/debug.rs -------------------------------------------------------------------------------- /examples/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/examples/json.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/serde_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/src/serde_tests.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelsproul/rust_sequence_trie/HEAD/src/tests.rs --------------------------------------------------------------------------------