Skip to content
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
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ repository = "https://github.com/compio-rs/compio"

[workspace.dependencies]
compio-buf = { path = "./compio-buf", version = "0.5.0" }
compio-driver = { path = "./compio-driver", version = "0.5.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.5.0" }
compio-driver = { path = "./compio-driver", version = "0.6.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.6.0" }
compio-macros = { path = "./compio-macros", version = "0.1.2" }
compio-fs = { path = "./compio-fs", version = "0.5.0" }
compio-io = { path = "./compio-io", version = "0.4.0" }
compio-net = { path = "./compio-net", version = "0.5.0" }
compio-signal = { path = "./compio-signal", version = "0.3.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.4.0" }
compio-fs = { path = "./compio-fs", version = "0.6.0" }
compio-io = { path = "./compio-io", version = "0.5.0" }
compio-net = { path = "./compio-net", version = "0.6.0" }
compio-signal = { path = "./compio-signal", version = "0.4.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.5.0" }
compio-log = { path = "./compio-log", version = "0.1.0" }
compio-tls = { path = "./compio-tls", version = "0.3.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.2.0" }
compio-quic = { path = "./compio-quic", version = "0.1.0", default-features = false }
compio-tls = { path = "./compio-tls", version = "0.4.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.3.0" }
compio-quic = { path = "./compio-quic", version = "0.2.0", default-features = false }

bytes = "1.7.1"
flume = "0.11.0"
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.4.0"
version = "0.5.0"
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.5.1"
version = "0.6.0"
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.5.1"
version = "0.6.0"
description = "Filesystem IO for compio"
categories = ["asynchronous", "filesystem"]
keywords = ["async", "fs"]
Expand Down
2 changes: 1 addition & 1 deletion compio-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-io"
version = "0.4.1"
version = "0.5.0"
description = "IO traits for completion based async IO"
categories = ["asynchronous"]
keywords = ["async", "io"]
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.5.1"
version = "0.6.0"
description = "Networking IO for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net"]
Expand Down
2 changes: 1 addition & 1 deletion compio-process/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-process"
version = "0.2.0"
version = "0.3.0"
description = "Processes for compio"
categories = ["asynchronous"]
keywords = ["async", "process"]
Expand Down
2 changes: 1 addition & 1 deletion compio-quic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-quic"
version = "0.1.0"
version = "0.2.0"
description = "QUIC for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "quic"]
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.5.1"
version = "0.6.0"
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.3.0"
version = "0.4.0"
description = "Signal handling for compio"
categories = ["asynchronous"]
keywords = ["async", "signal"]
Expand Down
2 changes: 1 addition & 1 deletion compio-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-tls"
version = "0.3.1"
version = "0.4.0"
description = "TLS adaptor with compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "tls"]
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.12.0"
version = "0.13.0"
description = "Completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down
Loading