mirror of
https://github.com/openharmony/third_party_rust_bytes.git
synced 2026-07-21 04:15:24 -04:00
35 lines
856 B
TOML
35 lines
856 B
TOML
[package]
|
|
|
|
name = "bytes"
|
|
version = "0.4.8" # don't forget to update html_root_url
|
|
license = "MIT"
|
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
|
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"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["i128"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.1.0"
|
|
iovec = "0.1"
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0"
|
|
|
|
[features]
|
|
i128 = ["byteorder/i128"]
|