mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-07 00:00:13 +02:00
The previous implementation didn't factor in a single `Bytes` handle being stored in an `Arc`. This new implementation correctly impelments both `Bytes` and `BytesMut` such that both are `Sync`. The rewrite also increases the number of bytes that can be stored inline.
26 lines
617 B
TOML
26 lines
617 B
TOML
[package]
|
|
|
|
name = "bytes"
|
|
version = "0.4.0-dev"
|
|
license = "MIT"
|
|
authors = ["Carl Lerche <[email protected]>"]
|
|
description = "Types and traits for working with bytes"
|
|
documentation = "https://carllerche.github.io/bytes/bytes"
|
|
homepage = "https://github.com/carllerche/bytes"
|
|
repository = "https://github.com/carllerche/bytes"
|
|
readme = "README.md"
|
|
keywords = ["buffers", "rope", "io"]
|
|
exclude = [
|
|
".gitignore",
|
|
".travis.yml",
|
|
"deploy.sh",
|
|
"bench/**/*",
|
|
"test/**/*"
|
|
]
|
|
|
|
[dependencies]
|
|
byteorder = "1.0.0"
|
|
|
|
[dev-dependencies]
|
|
tokio-core = "0.1.0"
|