Skip to content

Commit

Permalink
Add a tiny bytes::Bytes like implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
bantonsson committed Aug 20, 2024
1 parent df81898 commit a69e24b
Show file tree
Hide file tree
Showing 5 changed files with 531 additions and 0 deletions.
101 changes: 101 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ members = [
"data-pipeline",
"data-pipeline-ffi",
"ddsketch",
"tinybytes",
]
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
Expand Down
16 changes: 16 additions & 0 deletions tinybytes/Cargo.toml
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"
Loading

0 comments on commit a69e24b

Please sign in to comment.