Skip to content

Commit

Permalink
Merge pull request #147 from Berrysoft/release/0.9.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
George-Miao authored Nov 17, 2023
2 parents 7274ee5 + 80cfadb commit 28241af
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 21 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ license = "MIT"
repository = "https://github.com/compio-rs/compio"

[workspace.dependencies]
compio-buf = { path = "./compio-buf", version = "0.2.0" }
compio-driver = { path = "./compio-driver", version = "0.2.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.2.0" }
compio-macros = { path = "./compio-macros", version = "0.1.1" }
compio-fs = { path = "./compio-fs", version = "0.2.0" }
compio-io = { path = "./compio-io", version = "0.1.0" }
compio-net = { path = "./compio-net", version = "0.2.0" }
compio-signal = { path = "./compio-signal", version = "0.1.1" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0" }
compio-buf = { path = "./compio-buf", version = "0.2.0-beta.1" }
compio-driver = { path = "./compio-driver", version = "0.2.0-beta.1", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.2.0-beta.1" }
compio-macros = { path = "./compio-macros", version = "0.1.1-beta.1" }
compio-fs = { path = "./compio-fs", version = "0.2.0-beta.1" }
compio-io = { path = "./compio-io", version = "0.1.0-beta.1" }
compio-net = { path = "./compio-net", version = "0.2.0-beta.1" }
compio-signal = { path = "./compio-signal", version = "0.1.1-beta.1" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0-beta.1" }
compio-http = { path = "./compio-http", version = "0.1.0" }
compio-log = { path = "./compio-log", version = "0.1.0" }
compio-log = { path = "./compio-log", version = "0.1.0-beta.1" }
compio-tls = { path = "./compio-tls", version = "0.1.0" }


Expand Down
2 changes: 1 addition & 1 deletion compio-buf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-buf"
version = "0.2.0"
version = "0.2.0-beta.1"
description = "buffer trait for completion based async IO"
categories = ["asynchronous"]
keywords = ["async"]
Expand Down
2 changes: 1 addition & 1 deletion compio-dispatcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-dispatcher"
version = "0.1.0"
version = "0.1.0-beta.1"
description = "Multithreading dispatcher for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
2 changes: 1 addition & 1 deletion compio-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-driver"
version = "0.2.0"
version = "0.2.0-beta.1"
description = "low-level driver for compio"
categories = ["asynchronous"]
keywords = ["async", "iocp", "io-uring"]
Expand Down
2 changes: 1 addition & 1 deletion compio-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-fs"
version = "0.2.0"
version = "0.2.0-beta.1"
description = "Filesystem IO for compio"
categories = ["asynchronous", "filesystem"]
keywords = ["async", "fs"]
Expand Down
3 changes: 2 additions & 1 deletion compio-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "compio-io"
version = "0.1.0"
version = "0.1.0-beta.1"
description = "IO traits for completion based async IO"
categories = ["asynchronous"]
keywords = ["async", "io"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion compio-log/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-log"
version = "0.1.0"
version = "0.1.0-beta.1"
description = "log of compio"
categories = ["asynchronous"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion compio-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-macros"
version = "0.1.1"
version = "0.1.1-beta.1"
description = "proc macro of compio"
categories = ["asynchronous"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion compio-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-net"
version = "0.2.0"
version = "0.2.0-beta.1"
description = "Networking IO for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net"]
Expand Down
2 changes: 1 addition & 1 deletion compio-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-runtime"
version = "0.2.0"
version = "0.2.0-beta.1"
description = "high-level runtime for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
2 changes: 1 addition & 1 deletion compio-signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-signal"
version = "0.1.1"
version = "0.1.1-beta.1"
description = "Signal handling for compio"
categories = ["asynchronous"]
keywords = ["async", "signal"]
Expand Down
2 changes: 1 addition & 1 deletion compio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio"
version = "0.9.0"
version = "0.9.0-beta.1"
description = "completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down

0 comments on commit 28241af

Please sign in to comment.