-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a tiny bytes::Bytes like implementation
- Loading branch information
1 parent
df81898
commit a69e24b
Showing
5 changed files
with
531 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "tinybytes" | ||
description = "Tiny implementation of a bytes::Bytes like type that support AsRef<[u8]>" | ||
edition.workspace = true | ||
version.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
|
||
[lib] | ||
bench = false | ||
|
||
[dev-dependencies] | ||
once_cell = "1.8" | ||
pretty_assertions = "1.3" | ||
proptest = "1.5" | ||
test-case = "2.2" |
Oops, something went wrong.