From 5058e2d14ef189dcf44b1d9210394bfb14f1929b Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 31 Dec 2021 08:06:41 +0000 Subject: [PATCH] bump tokio in local-channel dev deps --- README.md | 11 +++++++---- local-channel/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 647eb2c0..a7cb8560 100644 --- a/README.md +++ b/README.md @@ -2,22 +2,25 @@ > A collection of lower-level libraries for composable network services. -![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-server) [![CI](https://github.com/actix/actix-net/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/actix/actix-net/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/actix/actix-net/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-net) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x) +[![Dependency Status](https://deps.rs/repo/github/actix/actix-extras/status.svg)](https://deps.rs/repo/github/actix/actix-extras) ## Example + See `actix-server/examples` and `actix-tls/examples` for some basic examples. ### MSRV + This repo's Minimum Supported Rust Version (MSRV) is 1.46.0. ## License -This project is licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)) +The crates in repo are licensed under either of: + +- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)) +- MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)) at your option. diff --git a/local-channel/Cargo.toml b/local-channel/Cargo.toml index 1c20b941..aba58f65 100644 --- a/local-channel/Cargo.toml +++ b/local-channel/Cargo.toml @@ -18,4 +18,4 @@ futures-util = { version = "0.3.7", default-features = false } local-waker = "0.1" [dev-dependencies] -tokio = { version = "1.5.1", features = ["rt", "macros"] } +tokio = { version = "1.13.1", features = ["rt", "macros"] }