Files
tokio/tokio-codec/Cargo.toml
T

35 lines
939 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.
version = "0.2.0-alpha.2"
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"
documentation = "https://docs.rs/tokio-codec/0.2.0-alpha.2/tokio_codec"
2018-06-04 22:36:06 -05:00
description = """
Utilities for encoding and decoding frames.
"""
categories = ["asynchronous"]
[dependencies]
tokio-io = { version = "=0.2.0-alpha.2", 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]
tokio = { version = "0.2.0-alpha.1", path = "../tokio" }
tokio-test = { version = "0.2.0-alpha.1", path = "../tokio-test" }
futures-util-preview = "=0.3.0-alpha.18"