Files
bytes/Cargo.toml
T

30 lines
673 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.
2019-11-25 11:19:30 -08:00
# - Create "v0.5.x" git tag.
version = "0.5.0"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Types and traits for working with bytes"
documentation = "https://docs.rs/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]
serde = { version = "1.0", optional = true }
[dev-dependencies]
loom = "0.2.10"
serde_test = "1.0"