From e5cf0cc717396d8131e3c8825667648fd7f17013 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Tue, 23 Apr 2019 23:17:57 -0400 Subject: Introduce `tokio-test` crate (#1030) --- tokio-test/Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tokio-test/Cargo.toml (limited to 'tokio-test/Cargo.toml') diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml new file mode 100644 index 00000000..c34d9441 --- /dev/null +++ b/tokio-test/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tokio-test" + +# When releasing to crates.io: +# - Update html_root_url. +# - Update doc url +# - Cargo.toml +# - README.md +# - Update CHANGELOG.md. +# - Create "v0.1.x" git tag. +version = "0.1.0" +authors = ["Tokio Contributors "] +license = "MIT" +repository = "https://github.com/tokio-rs/tokio" +homepage = "https://tokio.rs" +documentation = "https://docs.rs/tokio-test/0.1.0/tokio_test" +description = """ +Testing utilities for Tokio- and futures-based code +""" +categories = ["asynchronous", "testing"] +publish = false + +[dependencies] +futures = "0.1" +tokio-timer = "0.2" +tokio-executor = "0.1" -- cgit v1.2.3