Files
bytes/Cargo.toml
T

37 lines
723 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"
2016-07-19 14:10:07 +02:00
version = "0.4.0-dev"
2015-02-09 23:36:43 -08:00
license = "MIT"
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"
keywords = ["buffers", "rope", "io"]
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"bench/**/*",
"test/**/*"
]
2016-07-20 13:27:41 +02:00
[dependencies]
2016-08-10 15:45:31 -07:00
log = "0.3.6"
2016-08-31 12:07:44 -07:00
byteorder = "0.5.3"
2016-07-20 13:27:41 +02:00
[dev-dependencies]
2015-04-01 20:09:20 -07:00
rand = "0.3.5"
[[bench]]
name = "bench"
path = "bench/bench.rs"
[[test]]
name = "test"
path = "test/test.rs"