├── .github └── workflows │ └── tests.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── rustfmt.toml └── src ├── alignment.rs ├── alignment_resolver.rs ├── bitmap.rs ├── bitmap_resolver.rs ├── bounded_str.rs ├── errors.rs ├── fixed_str.rs ├── lib.rs ├── str_vec.rs └── tests ├── bounded_str_tests.rs ├── error_tests.rs ├── fixed_str_tests.rs ├── str_vec_tests.rs └── writer_util.rs /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /src/alignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/alignment.rs -------------------------------------------------------------------------------- /src/alignment_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/alignment_resolver.rs -------------------------------------------------------------------------------- /src/bitmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/bitmap.rs -------------------------------------------------------------------------------- /src/bitmap_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/bitmap_resolver.rs -------------------------------------------------------------------------------- /src/bounded_str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/bounded_str.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/fixed_str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/fixed_str.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/str_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/str_vec.rs -------------------------------------------------------------------------------- /src/tests/bounded_str_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/tests/bounded_str_tests.rs -------------------------------------------------------------------------------- /src/tests/error_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/tests/error_tests.rs -------------------------------------------------------------------------------- /src/tests/fixed_str_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/tests/fixed_str_tests.rs -------------------------------------------------------------------------------- /src/tests/str_vec_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/tests/str_vec_tests.rs -------------------------------------------------------------------------------- /src/tests/writer_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tindzk/qstr/HEAD/src/tests/writer_util.rs --------------------------------------------------------------------------------