Files
tokio/tokio-codec/Cargo.toml
T

24 lines
624 B
TOML
Raw Normal View History

2018-06-04 22:36:06 -05:00
[package]
name = "tokio-codec"
# When releasing to crates.io:
# - Update html_root_url.
2018-09-26 22:32:51 -07:00
# - Update doc URL.
2018-06-04 22:36:06 -05:00
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2018-09-26 22:32:51 -07:00
version = "0.1.1"
2018-06-04 22:36:06 -05:00
authors = ["Carl Lerche <[email protected]>", "Bryan Burgers <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2018-09-26 22:32:51 -07:00
documentation = "https://docs.rs/tokio-codec/0.1.1/tokio_codec"
2018-06-04 22:36:06 -05:00
description = """
Utilities for encoding and decoding frames.
"""
categories = ["asynchronous"]
[dependencies]
tokio-io = { version = "0.1.7", path = "../tokio-io" }
2018-06-04 22:36:06 -05:00
bytes = "0.4.7"
futures = "0.1.18"