├── .drone.yml ├── .github └── workflows │ ├── rust.yml │ └── validate.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── benches └── compare.rs └── src ├── entry.rs ├── iter.rs ├── lib.rs ├── macros.rs ├── raw_entry.rs ├── serde.rs ├── vecmap.rs ├── vecmap ├── entry.rs ├── iter.rs └── raw_entry.rs └── vectypes.rs /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/.drone.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target* 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benches/compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/benches/compare.rs -------------------------------------------------------------------------------- /src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/entry.rs -------------------------------------------------------------------------------- /src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/iter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/raw_entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/raw_entry.rs -------------------------------------------------------------------------------- /src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/serde.rs -------------------------------------------------------------------------------- /src/vecmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/vecmap.rs -------------------------------------------------------------------------------- /src/vecmap/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/vecmap/entry.rs -------------------------------------------------------------------------------- /src/vecmap/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/vecmap/iter.rs -------------------------------------------------------------------------------- /src/vecmap/raw_entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/vecmap/raw_entry.rs -------------------------------------------------------------------------------- /src/vectypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licenser/halfbrown/HEAD/src/vectypes.rs --------------------------------------------------------------------------------