diff --git a/Cargo.toml b/Cargo.toml index 29a49223..78aefa31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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" @@ -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] diff --git a/runtime-attributes/Cargo.toml b/runtime-attributes/Cargo.toml index 10e30f2a..ee533da2 100644 --- a/runtime-attributes/Cargo.toml +++ b/runtime-attributes/Cargo.toml @@ -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" @@ -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" } diff --git a/runtime-native/Cargo.toml b/runtime-native/Cargo.toml index c1de3c9d..507399c6 100644 --- a/runtime-native/Cargo.toml +++ b/runtime-native/Cargo.toml @@ -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" @@ -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" diff --git a/runtime-raw/Cargo.toml b/runtime-raw/Cargo.toml index 18844637..a56ccf35 100644 --- a/runtime-raw/Cargo.toml +++ b/runtime-raw/Cargo.toml @@ -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" diff --git a/runtime-tokio/Cargo.toml b/runtime-tokio/Cargo.toml index caaa8111..041f9dbd 100644 --- a/runtime-tokio/Cargo.toml +++ b/runtime-tokio/Cargo.toml @@ -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" @@ -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"