Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/parkmycar/compact_bytes
https://github.com/parkmycar/compact_bytes
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/parkmycar/compact_bytes
- Owner: ParkMyCar
- License: apache-2.0
- Created: 2023-10-31T14:22:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-20T14:17:45.000Z (about 1 year ago)
- Last Synced: 2024-04-16T02:22:52.272Z (9 months ago)
- Language: Rust
- Size: 67.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
compact_bytes
A memory efficient bytes container that can store up to 23 bytes on the stack.
### Note from the Maintainer
This crate was mostly developed for [`Materialize`](https://github.com/MaterializeInc/materialize) out of a need for a more compact bytes container. It entirely borrows implementation from
[`compact_str`](https://github.com/ParkMyCar/compact_str) which has been thoughtfully maintained over the past few years by a number of dedicated contributors, including:* [NobodyXu](https://github.com/NobodyXu)
* [Kijewski](https://github.com/Kijewski)
* [matklad](https://github.com/matklad)
* [CAD97](https://github.com/CAD97)
* [mcronce](https://github.com/mcronce)
* [neoeinstein](https://github.com/neoeinstein)
* [tylerhawkes](https://github.com/tylerhawkes)
* [dragazo](https://github.com/dragazo)
* [Nilstrieb](https://github.com/Nilstrieb)
* [njaard](https://github.com/njaard)
* [vipentii](https://github.com/vipentti)
* [vbasky](https://github.com/vbasky)
* [mishrasamiksha](https://github.com/mishrasamiksha)For now this repository exists separately from `compact_str` because it's easier to get started that way. But the plan is to eventually merge the two.