Files
bytes/Cargo.toml
T

41 lines
1015 B
TOML
Raw Normal View History

2015-01-30 00:04:33 -08:00
[package]
2015-02-09 23:36:43 -08:00
name = "bytes"
2018-09-04 13:31:26 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.4.x" git tag.
2019-03-06 12:42:20 -08:00
version = "0.4.12"
2018-06-18 12:49:34 -07:00
license = "MIT"
2015-02-09 23:36:43 -08:00
authors = ["Carl Lerche <[email protected]>"]
description = "Types and traits for working with bytes"
2019-03-06 12:42:20 -08:00
documentation = "https://docs.rs/bytes/0.4.12/bytes"
2015-02-09 23:36:43 -08:00
homepage = "https://github.com/carllerche/bytes"
repository = "https://github.com/carllerche/bytes"
readme = "README.md"
2017-02-24 10:35:53 -08:00
keywords = ["buffers", "zero-copy", "io"]
2015-02-09 23:36:43 -08:00
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"bench/**/*",
"test/**/*"
]
2017-02-24 10:35:53 -08:00
categories = ["network-programming", "data-structures"]
2018-06-19 10:37:51 +10:00
[package.metadata.docs.rs]
features = ["i128"]
2016-07-20 13:27:41 +02:00
[dependencies]
2018-06-19 10:37:51 +10:00
byteorder = "1.1.0"
2017-03-15 09:23:10 -07:00
iovec = "0.1"
serde = { version = "1.0", optional = true }
2018-09-03 10:23:00 -07:00
either = { version = "1.5", default-features = false, optional = true }
[dev-dependencies]
serde_test = "1.0"
2018-06-19 10:37:51 +10:00
[features]
i128 = ["byteorder/i128"]