-
-
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.
- Loading branch information
1 parent
8d09f61
commit 80ba2a4
Showing
32 changed files
with
139 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,29 +7,29 @@ name = "tokio-codec" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
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-codec/0.2.0-alpha.4/tokio_codec" | ||
documentation = "https://docs.rs/tokio-codec/0.2.0-alpha.5/tokio_codec" | ||
description = """ | ||
Utilities for encoding and decoding frames. | ||
""" | ||
categories = ["asynchronous"] | ||
|
||
[dependencies] | ||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" } | ||
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" } | ||
|
||
bytes = "0.4.7" | ||
futures-core-preview = "=0.3.0-alpha.18" | ||
futures-sink-preview = "=0.3.0-alpha.18" | ||
log = "0.4" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.4", path = "../tokio-test" } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" } | ||
|
||
futures-util-preview = "=0.3.0-alpha.18" | ||
|
||
|
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
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,32 +7,32 @@ name = "tokio-fs" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-fs/0.2.0-alpha.4/tokio_fs" | ||
documentation = "https://docs.rs/tokio-fs/0.2.0-alpha.5/tokio_fs" | ||
description = """ | ||
Filesystem API for Tokio. | ||
""" | ||
keywords = ["tokio", "futures", "fs", "file", "async"] | ||
categories = ["asynchronous", "network-programming", "filesystem"] | ||
|
||
[dependencies] | ||
tokio-io = { version = "=0.2.0-alpha.4", features = ["util"], path = "../tokio-io" } | ||
tokio-executor = { version = "=0.2.0-alpha.4", features = ["blocking"], path = "../tokio-executor" } | ||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" } | ||
tokio-io = { version = "=0.2.0-alpha.5", features = ["util"], path = "../tokio-io" } | ||
tokio-executor = { version = "=0.2.0-alpha.5", features = ["blocking"], path = "../tokio-executor" } | ||
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" } | ||
|
||
futures-core-preview = "=0.3.0-alpha.18" | ||
futures-util-preview = "=0.3.0-alpha.18" | ||
lazy_static = "1.3.0" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.4", path = "../tokio-test" } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" } | ||
|
||
rand = "0.7" | ||
tempfile = "3" | ||
|
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ name = "tokio-io" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
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-io/0.2.0-alpha.4/tokio_io" | ||
documentation = "https://docs.rs/tokio-io/0.2.0-alpha.5/tokio_io" | ||
description = """ | ||
Core I/O primitives for asynchronous I/O in Rust. | ||
""" | ||
|
@@ -31,8 +31,8 @@ pin-utils = { version = "=0.1.0-alpha.4", optional = true } | |
pin-project = "=0.4.0-alpha.11" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" } | ||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" } | ||
|
||
futures-util-preview = "=0.3.0-alpha.18" | ||
|
||
|
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-macros" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
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-macros/0.2.0-alpha.4/tokio_macros" | ||
documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.5/tokio_macros" | ||
description = """ | ||
Tokio's proc macros. | ||
""" | ||
|
@@ -29,7 +29,7 @@ quote = "1" | |
syn = { version = "1", features = ["full"] } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.2.0-alpha.4", path = "../tokio", default-features = false, features = ["rt-full"] } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio", default-features = false, features = ["rt-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
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,14 +7,14 @@ name = "tokio-net" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
edition = "2018" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tokio-rs/tokio" | ||
homepage = "https://tokio.rs" | ||
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.4/tokio_net" | ||
documentation = "https://docs.rs/tokio-net/0.2.0-alpha.5/tokio_net" | ||
description = """ | ||
Event loop that drives Tokio I/O resources. | ||
""" | ||
|
@@ -62,10 +62,10 @@ uds = [ | |
log = ["tracing/log"] | ||
|
||
[dependencies] | ||
tokio-codec = { version = "=0.2.0-alpha.4", path = "../tokio-codec" } | ||
tokio-executor = { version = "=0.2.0-alpha.4", features = ["blocking"], path = "../tokio-executor" } | ||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" } | ||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" } | ||
tokio-codec = { version = "=0.2.0-alpha.5", path = "../tokio-codec" } | ||
tokio-executor = { version = "=0.2.0-alpha.5", features = ["blocking"], path = "../tokio-executor" } | ||
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" } | ||
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" } | ||
|
||
tracing = { version = "0.1.5", optional = true } | ||
|
||
|
@@ -103,8 +103,8 @@ optional = true | |
tracing = { version = "0.1.5", features = ["log"] } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" } | ||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" } | ||
tokio-test = { version = "=0.2.0-alpha.5", path = "../tokio-test" } | ||
num_cpus = "1.8.0" | ||
tokio-io-pool = "0.1.4" | ||
|
||
|
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ name = "tokio-sync" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
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-sync/0.2.0-alpha.4/tokio_sync" | ||
documentation = "https://docs.rs/tokio-sync/0.2.0-alpha.5/tokio_sync" | ||
description = """ | ||
Synchronization utilities. | ||
""" | ||
|
@@ -29,8 +29,8 @@ futures-sink-preview = { version = "=0.3.0-alpha.18", optional = true } | |
futures-util-preview = { version = "=0.3.0-alpha.18" } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "0.2.0-alpha.4", path = "../tokio" } | ||
tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" } | ||
tokio = { version = "0.2.0-alpha.5", path = "../tokio" } | ||
tokio-test = { version = "0.2.0-alpha.5", path = "../tokio-test" } | ||
|
||
env_logger = { version = "0.6", default-features = false } | ||
loom = { version = "0.2.1", features = ["futures"] } | ||
|
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 |
---|---|---|
|
@@ -7,24 +7,24 @@ name = "tokio-test" | |
# - Cargo.toml | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0-alpha.4" | ||
version = "0.2.0-alpha.5" | ||
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.2.0-alpha.4/tokio_test" | ||
documentation = "https://docs.rs/tokio-test/0.2.0-alpha.5/tokio_test" | ||
description = """ | ||
Testing utilities for Tokio- and futures-based code | ||
""" | ||
categories = ["asynchronous", "testing"] | ||
|
||
[dependencies] | ||
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" } | ||
tokio-executor = { version = "=0.2.0-alpha.4", path = "../tokio-executor" } | ||
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" } | ||
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" } | ||
tokio-timer = { version = "=0.3.0-alpha.4", path = "../tokio-timer" } | ||
tokio = { version = "=0.2.0-alpha.5", path = "../tokio" } | ||
tokio-executor = { version = "=0.2.0-alpha.5", path = "../tokio-executor" } | ||
tokio-io = { version = "=0.2.0-alpha.5", path = "../tokio-io" } | ||
tokio-sync = { version = "=0.2.0-alpha.5", path = "../tokio-sync" } | ||
tokio-timer = { version = "=0.3.0-alpha.5", path = "../tokio-timer" } | ||
|
||
futures-core-preview = "=0.3.0-alpha.18" | ||
pin-convert = "0.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
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
Oops, something went wrong.