Files
tokio/tokio-codec/Cargo.toml
T

38 lines
989 B
TOML
Raw Normal View History

2018-06-04 22:36:06 -05:00
[package]
name = "tokio-codec"
# When releasing to crates.io:
# - Remove path dependencies
2018-06-04 22:36:06 -05:00
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
2018-06-04 22:36:06 -05:00
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
2019-08-29 12:59:10 -07:00
version = "0.2.0-alpha.4"
2019-05-14 10:27:36 -07:00
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
2018-06-04 22:36:06 -05:00
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-08-29 12:59:10 -07:00
documentation = "https://docs.rs/tokio-codec/0.2.0-alpha.4/tokio_codec"
2018-06-04 22:36:06 -05:00
description = """
Utilities for encoding and decoding frames.
"""
categories = ["asynchronous"]
[dependencies]
2019-08-29 12:59:10 -07:00
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
2018-06-04 22:36:06 -05:00
bytes = "0.4.7"
futures-core-preview = "=0.3.0-alpha.18"
futures-sink-preview = "=0.3.0-alpha.18"
2019-06-27 18:10:29 +01:00
log = "0.4"
[dev-dependencies]
2019-08-29 12:59:10 -07:00
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
tokio-test = { version = "=0.2.0-alpha.4", path = "../tokio-test" }
futures-util-preview = "=0.3.0-alpha.18"
[package.metadata.docs.rs]
all-features = true