mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-11 00:00:23 +02:00
29 lines
823 B
TOML
29 lines
823 B
TOML
[package]
|
|||
|
|
|
||
name = "bytes"
|
|||
version = "0.5.0" # don't forget to update html_root_url
|
|||
license = "MIT/Apache-2.0"
|
|||
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", "zero-copy", "io"]
|
|||
exclude = [
|
|||
|
|
".gitignore",
|
||
|
|
".travis.yml",
|
||
|
|
"deploy.sh",
|
||
|
|
"bench/**/*",
|
||
|
|
"test/**/*"
|
||
|
|
]
|
||
categories = ["network-programming", "data-structures"]
|
|||
|
|||
[dependencies]
|
|||
byteorder = "1.0.0"
|
|||
iovec = { git = "https://github.com/carllerche/iovec" }
|
|||
serde = { version = "1.0", optional = true }
|
|||
|
|||
|
|
[dev-dependencies]
|
||
serde_test = "1.0"
|