Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.

Prepare 0.3.0-alpha.7 #92

Merged
merged 1 commit into from
Aug 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "runtime"
description = "Empowering everyone to build asynchronous software."
version = "0.3.0-alpha.6"
version = "0.3.0-alpha.7"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustasync/runtime"
Expand All @@ -18,9 +18,9 @@ native = ["runtime-attributes/native", "runtime-native"]

[dependencies]
futures-preview = "0.3.0-alpha.18"
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.5", default-features = false }
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.4" }
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.4", optional = true }
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.6", default-features = false }
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.5" }
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.6", optional = true }

[dev-dependencies]
failure = "0.1.5"
Expand All @@ -29,7 +29,7 @@ futures-preview = { version = "0.3.0-alpha.18", features = ["nightly", "async-aw
juliex = "0.3.0-alpha.6"
mio = "0.6.16"
rand = "0.7.0"
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.4" }
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.5" }
tokio = "0.1.19"

[profile.bench]
Expand Down
4 changes: 2 additions & 2 deletions runtime-attributes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "runtime-attributes"
description = "Proc Macro attributes for the Runtime crate."
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustasync/runtime"
Expand All @@ -25,4 +25,4 @@ proc-macro2 = { version = "1.0.0", features = ["nightly"] }
quote = "1.0.0"

[dev-dependencies]
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }
4 changes: 2 additions & 2 deletions runtime-native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "runtime-native"
description = "A cross-platform asynchronous runtime"
version = "0.3.0-alpha.4"
version = "0.3.0-alpha.6"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustasync/runtime"
Expand All @@ -14,7 +14,7 @@ edition = "2018"

[dependencies]
futures-preview = { version = "0.3.0-alpha.18", features = ["compat"] }
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-datagram = "3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion runtime-raw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "runtime-raw"
description = "Traits to implement custom Runtimes."
version = "0.3.0-alpha.4"
version = "0.3.0-alpha.5"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustasync/runtime"
Expand Down
4 changes: 2 additions & 2 deletions runtime-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "runtime-tokio"
description = "A Tokio-based asynchronous runtime"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustasync/runtime"
Expand All @@ -17,5 +17,5 @@ futures-preview = { version = "0.3.0-alpha.18", features = ["compat", "io-compat
futures01 = { package = "futures", version = "0.1" }
lazy_static = "1.3.0"
mio = "0.6.16"
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }
tokio = "0.1.19"