Files
bytes/Cargo.toml
T

35 lines
824 B
TOML
Raw Normal View History

2015-01-30 00:04:33 -08:00
[package]
2019-11-25 11:19:30 -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.
2020-10-16 11:49:27 -07:00
# - Create "v0.6.x" git tag.
version = "0.6.0"
2019-11-25 11:19:30 -08:00
license = "MIT"
2019-12-12 11:53:36 -08:00
authors = [
"Carl Lerche <[email protected]>",
"Sean McArthur <[email protected]>",
]
2019-11-25 11:19:30 -08:00
description = "Types and traits for working with bytes"
2020-10-16 11:49:27 -07:00
documentation = "https://docs.rs/bytes/0.6.0/bytes/"
2019-11-25 11:19:30 -08:00
repository = "https://github.com/tokio-rs/bytes"
readme = "README.md"
keywords = ["buffers", "zero-copy", "io"]
2017-02-24 10:35:53 -08:00
categories = ["network-programming", "data-structures"]
2019-07-26 05:01:22 +09:00
edition = "2018"
[features]
default = ["std"]
std = []
2016-07-20 13:27:41 +02:00
[dependencies]
2020-05-25 01:41:45 +09:00
serde = { version = "1.0.60", optional = true, default-features = false, features = ["alloc"] }
[dev-dependencies]
serde_test = "1.0"
2020-01-23 10:10:15 -08:00
2020-07-13 16:55:47 -07:00
[target.'cfg(loom)'.dev-dependencies]
2020-05-21 19:23:22 -07:00
loom = "0.3"