Skip to content

Commit c4b71ca

Browse files
committed
update MSRV to 1.70 for tokio
Signed-off-by: Marc-Antoine Perennou <[email protected]>
1 parent 7e70f15 commit c4b71ca

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "executor-trait"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "A collection of traits to define a common interface across executors"
66
edition = "2021"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/executor-trait"
1111
keywords = ["async", "await", "future", "executor"]
1212
categories = ["asynchronous", "concurrency"]
1313
readme = "README.md"
14-
rust-version = "1.63.0"
14+
rust-version = "1.70.0"
1515

1616
[dependencies]
1717
async-trait = "^0.1.42"

async-executor-trait/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-executor-trait"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "executor-trait implementation for async-std"
66
edition = "2021"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/async-executor-trait"
1111
keywords = ["async", "await", "future", "executor"]
1212
categories = ["asynchronous", "concurrency"]
1313
readme = "README.md"
14-
rust-version = "1.63.0"
14+
rust-version = "1.70.0"
1515

1616
[dependencies]
1717
async-trait = "^0.1.42"

async-global-executor-trait/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-global-executor-trait"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "executor-trait implementation for async-global-executor"
66
edition = "2021"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/async-global-executor-trait"
1111
keywords = ["async", "await", "future", "executor"]
1212
categories = ["asynchronous", "concurrency"]
1313
readme = "README.md"
14-
rust-version = "1.63.0"
14+
rust-version = "1.70.0"
1515

1616
[features]
1717
default = ["async-global-executor/default"]

smol-executor-trait/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "smol-executor-trait"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "executor-trait implementation for smol"
66
edition = "2021"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/smol-executor-trait"
1111
keywords = ["async", "await", "future", "executor"]
1212
categories = ["asynchronous", "concurrency"]
1313
readme = "README.md"
14-
rust-version = "1.63.0"
14+
rust-version = "1.70.0"
1515

1616
[dependencies]
1717
async-trait = "^0.1.42"

tokio-executor-trait/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-executor-trait"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "executor-trait implementation for tokio"
66
edition = "2021"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/tokio-executor-trait"
1111
keywords = ["async", "await", "future", "executor"]
1212
categories = ["asynchronous", "concurrency"]
1313
readme = "README.md"
14-
rust-version = "1.63.0"
14+
rust-version = "1.70.0"
1515

1616
[dependencies]
1717
async-trait = "^0.1.42"

0 commit comments

Comments
 (0)