Skip to content

Commit 390397d

Browse files
committed
v3.0.0
1 parent 10e08e8 commit 390397d

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 3.0.0
2+
3+
- Drop support for tokio < 1.0
4+
15
# Version 2.4.1
26

37
- Update to events-listener 4.0

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-global-executor"
3-
version = "2.4.1"
3+
version = "3.0.0"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
description = "A global executor built on top of async-executor and async-io"
66
edition = "2021"
@@ -15,7 +15,8 @@ rust-version = "1.60"
1515

1616
[features]
1717
default = ["async-io"]
18-
tokio = ["tokio-crate"]
18+
async-io = ["dep:async-io"]
19+
tokio = ["dep:tokio"]
1920

2021
[dependencies]
2122
async-channel = "^2.1.1"
@@ -29,8 +30,7 @@ once_cell = "^1.4"
2930
version = "^2.2.1"
3031
optional = true
3132

32-
[dependencies.tokio-crate]
33-
package = "tokio"
33+
[dependencies.tokio]
3434
version = "^1.0"
3535
optional = true
3636
default-features = false

0 commit comments

Comments
 (0)