-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare for Tokio 1.0 work (#3238)
- Loading branch information
1 parent
9706ca9
commit 473ddaa
Showing
11 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ name = "tokio-macros" | |
# - Update doc url | ||
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.3.x" git tag. | ||
version = "0.3.1" | ||
# - Create "tokio-macros-1.0.x" git tag. | ||
version = "1.0.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,6 +18,7 @@ description = """ | |
Tokio's proc macros. | ||
""" | ||
categories = ["asynchronous"] | ||
publish = false | ||
|
||
[lib] | ||
proc-macro = true | ||
|
@@ -30,7 +31,7 @@ quote = "1" | |
syn = { version = "1.0.3", features = ["full"] } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.3.0", path = "../tokio", features = ["full"] } | ||
tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,27 +6,28 @@ name = "tokio-test" | |
# - Update doc url | ||
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.3.x" git tag. | ||
version = "0.3.0" | ||
# - Create "tokio-test-0.4.x" git tag. | ||
version = "0.4.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-test/0.3.0/tokio_test" | ||
documentation = "https://docs.rs/tokio-test/0.4.0/tokio_test" | ||
description = """ | ||
Testing utilities for Tokio- and futures-based code | ||
""" | ||
categories = ["asynchronous", "testing"] | ||
publish = false | ||
|
||
[dependencies] | ||
tokio = { version = "0.3.0", path = "../tokio", features = ["rt", "stream", "sync", "time", "test-util"] } | ||
tokio = { version = "1.0.0", path = "../tokio", features = ["rt", "stream", "sync", "time", "test-util"] } | ||
|
||
bytes = "0.6.0" | ||
futures-core = "0.3.0" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.3.0", path = "../tokio", features = ["full"] } | ||
tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } | ||
futures-util = "0.3.0" | ||
|
||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ name = "tokio-util" | |
# - Update doc url | ||
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.5.1" | ||
# - Create "tokio-util-0.6.x" git tag. | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,6 +18,7 @@ description = """ | |
Additional utilities for working with Tokio. | ||
""" | ||
categories = ["asynchronous"] | ||
publish = false | ||
|
||
[features] | ||
# No features on by default | ||
|
@@ -34,7 +35,7 @@ io = [] | |
rt = ["tokio/rt"] | ||
|
||
[dependencies] | ||
tokio = { version = "0.3.4", path = "../tokio" } | ||
tokio = { version = "1.0.0", path = "../tokio" } | ||
|
||
bytes = "0.6.0" | ||
futures-core = "0.3.0" | ||
|
@@ -45,8 +46,8 @@ pin-project-lite = "0.2.0" | |
slab = { version = "0.4.1", optional = true } # Backs `DelayQueue` | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.3.0", path = "../tokio", features = ["full"] } | ||
tokio-test = { version = "0.3.0", path = "../tokio-test" } | ||
tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } | ||
tokio-test = { version = "0.4.0", path = "../tokio-test" } | ||
|
||
futures = "0.3.0" | ||
futures-test = "0.3.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ name = "tokio" | |
# - Cargo.toml | ||
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.3.x" git tag. | ||
version = "0.3.5" | ||
# - Create "v1.0.x" git tag. | ||
version = "1.0.0" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
documentation = "https://docs.rs/tokio/0.3.5/tokio/" | ||
documentation = "https://docs.rs/tokio/1.0.0/tokio/" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
description = """ | ||
|
@@ -22,6 +22,7 @@ backed applications. | |
""" | ||
categories = ["asynchronous", "network-programming"] | ||
keywords = ["io", "async", "non-blocking", "futures"] | ||
publish = false | ||
|
||
[features] | ||
# Include nothing by default | ||
|
@@ -88,7 +89,7 @@ test-util = [] | |
time = [] | ||
|
||
[dependencies] | ||
tokio-macros = { version = "0.3.0", path = "../tokio-macros", optional = true } | ||
tokio-macros = { version = "1.0.0", path = "../tokio-macros", optional = true } | ||
|
||
pin-project-lite = "0.2.0" | ||
|
||
|
@@ -117,7 +118,7 @@ default-features = false | |
optional = true | ||
|
||
[dev-dependencies] | ||
tokio-test = { version = "0.3.0", path = "../tokio-test" } | ||
tokio-test = { version = "0.4.0", path = "../tokio-test" } | ||
futures = { version = "0.3.0", features = ["async-await"] } | ||
proptest = "0.10.0" | ||
tempfile = "3.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters