Files
bytes/Cargo.toml
T

29 lines
823 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-01-29 09:40:45 -08:00
version = "0.5.0" # don't forget to update html_root_url
2017-06-26 19:33:17 +02:00
license = "MIT/Apache-2.0"
2015-02-09 23:36:43 -08:00
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"
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"]
2016-07-20 13:27:41 +02:00
[dependencies]
2017-01-28 13:04:27 -05:00
byteorder = "1.0.0"
2018-01-25 22:02:21 -08:00
iovec = { git = "https://github.com/carllerche/iovec" }
serde = { version = "1.0", optional = true }
[dev-dependencies]
serde_test = "1.0"