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

[workspace.dependencies]
compio-buf = { path = "./compio-buf", version = "0.8.0" }
compio-driver = { path = "./compio-driver", version = "0.11.1", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.11.0" }
compio-macros = { path = "./compio-macros", version = "0.1.2" }
compio-fs = { path = "./compio-fs", version = "0.11.0" }
compio-io = { path = "./compio-io", version = "0.9.0" }
compio-net = { path = "./compio-net", version = "0.11.0" }
compio-signal = { path = "./compio-signal", version = "0.9.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.10.0" }
compio-log = { path = "./compio-log", version = "0.1.0" }
compio-tls = { path = "./compio-tls", version = "0.9.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.8.0" }
compio-quic = { path = "./compio-quic", version = "0.7.0", default-features = false }
compio-ws = { path = "./compio-ws", version = "0.3.0", default-features = false }
compio-buf = { path = "./compio-buf", version = "0.8.1" }
compio-driver = { path = "./compio-driver", version = "0.11.2", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.12.0" }
compio-macros = { path = "./compio-macros", version = "0.2.0" }
compio-fs = { path = "./compio-fs", version = "0.12.0" }
compio-io = { path = "./compio-io", version = "0.9.1" }
compio-net = { path = "./compio-net", version = "0.12.0" }
compio-signal = { path = "./compio-signal", version = "0.9.1" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.10.1" }
compio-log = { path = "./compio-log", version = "0.2.0" }
compio-tls = { path = "./compio-tls", version = "0.9.1", default-features = false }
compio-process = { path = "./compio-process", version = "0.8.1" }
compio-quic = { path = "./compio-quic", version = "0.7.1", default-features = false }
compio-ws = { path = "./compio-ws", version = "0.3.1", default-features = false }

bytes = "1.7.1"
cfg_aliases = "0.2.1"
Expand Down
6 changes: 6 additions & 0 deletions compio-buf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1](https://github.com/compio-rs/compio/compare/compio-buf-v0.8.0...compio-buf-v0.8.1) - 2026-02-05

### Other

- release 0.18 ([#653](https://github.com/compio-rs/compio/pull/653))

## [0.8.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.8.0"
version = "0.8.1"
description = "Buffer trait for completion based async IO"
categories = ["asynchronous"]
keywords = ["async"]
Expand Down
6 changes: 6 additions & 0 deletions compio-dispatcher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.1](https://github.com/compio-rs/compio/compare/compio-dispatcher-v0.10.0...compio-dispatcher-v0.10.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-driver, compio-runtime, compio-macros, compio-net, compio-io

## [0.10.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.10.0"
version = "0.10.1"
description = "Multithreading dispatcher for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
10 changes: 10 additions & 0 deletions compio-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.2](https://github.com/compio-rs/compio/compare/compio-driver-v0.11.1...compio-driver-v0.11.2) - 2026-02-05

### Added

- *(driver)* cancel token ([#660](https://github.com/compio-rs/compio/pull/660))

### Changed

- *(driver)* shared fd ([#661](https://github.com/compio-rs/compio/pull/661))

## [0.11.1](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.11.1"
version = "0.11.2"
description = "Low-level driver for compio"
categories = ["asynchronous"]
keywords = ["async", "iocp", "io-uring"]
Expand Down
10 changes: 10 additions & 0 deletions compio-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/compio-rs/compio/compare/compio-fs-v0.11.0...compio-fs-v0.12.0) - 2026-02-05

### Changed

- [**breaking**] move {Async,Poll}Fd to runtime ([#662](https://github.com/compio-rs/compio/pull/662))

### Other

- compio::runtime instead of compio_runtime ([#664](https://github.com/compio-rs/compio/pull/664))

## [0.11.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.11.0"
version = "0.12.0"
description = "Filesystem IO for compio"
categories = ["asynchronous", "filesystem"]
keywords = ["async", "fs"]
Expand Down
6 changes: 6 additions & 0 deletions compio-io/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/compio-rs/compio/compare/compio-io-v0.9.0...compio-io-v0.9.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-driver, compio-runtime, compio-macros

## [0.9.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.9.0"
version = "0.9.1"
description = "IO traits for completion based async IO"
categories = ["asynchronous"]
keywords = ["async", "io"]
Expand Down
20 changes: 20 additions & 0 deletions compio-log/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/compio-rs/compio/compare/compio-log-v0.1.0...compio-log-v0.2.0) - 2026-02-05

### Added

- [**breaking**] fs & net feature ([#564](https://github.com/compio-rs/compio/pull/564))

### Other

- release ([#646](https://github.com/compio-rs/compio/pull/646))
- deploy docs ([#641](https://github.com/compio-rs/compio/pull/641))
- extract common deps into workspace
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Added

- fs & net feature ([#564](https://github.com/compio-rs/compio/pull/564))
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.2.0"
description = "Log of compio"
categories = ["asynchronous"]
readme = "README.md"
Expand Down
28 changes: 28 additions & 0 deletions compio-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/compio-rs/compio/compare/compio-macros-v0.1.2...compio-macros-v0.2.0) - 2026-02-05

### Added

- [**breaking**] fs & net feature ([#564](https://github.com/compio-rs/compio/pull/564))
- update edition to 2024 ([#543](https://github.com/compio-rs/compio/pull/543))

### Changed

- use style_edition 2024

### Fixed

- reduce warnings ([#396](https://github.com/compio-rs/compio/pull/396))

### Other

- release ([#646](https://github.com/compio-rs/compio/pull/646))
- deploy docs ([#641](https://github.com/compio-rs/compio/pull/641))
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Added

- fs & net feature ([#564](https://github.com/compio-rs/compio/pull/564))
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.2"
version = "0.2.0"
description = "Proc macro of compio"
categories = ["asynchronous"]
readme = "README.md"
Expand Down
10 changes: 10 additions & 0 deletions compio-net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/compio-rs/compio/compare/compio-net-v0.11.0...compio-net-v0.12.0) - 2026-02-05

### Changed

- [**breaking**] move {Async,Poll}Fd to runtime ([#662](https://github.com/compio-rs/compio/pull/662))

### Other

- compio::runtime instead of compio_runtime ([#664](https://github.com/compio-rs/compio/pull/664))

## [0.11.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.11.0"
version = "0.12.0"
description = "Networking IO for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net"]
Expand Down
6 changes: 6 additions & 0 deletions compio-process/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1](https://github.com/compio-rs/compio/compare/compio-process-v0.8.0...compio-process-v0.8.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-driver, compio-runtime, compio-macros, compio-io

## [0.8.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.8.0"
version = "0.8.1"
description = "Processes for compio"
categories = ["asynchronous"]
keywords = ["async", "process"]
Expand Down
6 changes: 6 additions & 0 deletions compio-quic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.1](https://github.com/compio-rs/compio/compare/compio-quic-v0.7.0...compio-quic-v0.7.1) - 2026-02-05

### Changed

- *(quic)* `Endpoint` ([#663](https://github.com/compio-rs/compio/pull/663))

## [0.7.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.7.0"
version = "0.7.1"
description = "QUIC for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "quic"]
Expand Down
6 changes: 6 additions & 0 deletions compio-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/compio-rs/compio/compare/compio-runtime-v0.11.0...compio-runtime-v0.12.0) - 2026-02-05

### Changed

- [**breaking**] move {Async,Poll}Fd to runtime ([#662](https://github.com/compio-rs/compio/pull/662))

## [0.11.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.11.0"
version = "0.12.0"
description = "High-level runtime for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
6 changes: 6 additions & 0 deletions compio-signal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/compio-rs/compio/compare/compio-signal-v0.9.0...compio-signal-v0.9.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-driver, compio-driver, compio-runtime

## [0.9.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.9.0"
version = "0.9.1"
description = "Signal handling for compio"
categories = ["asynchronous"]
keywords = ["async", "signal"]
Expand Down
6 changes: 6 additions & 0 deletions compio-tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/compio-rs/compio/compare/compio-tls-v0.9.0...compio-tls-v0.9.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-runtime, compio-macros, compio-net, compio-io

## [0.9.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.9.0"
version = "0.9.1"
description = "TLS adaptor with compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "tls"]
Expand Down
6 changes: 6 additions & 0 deletions compio-ws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/compio-rs/compio/compare/compio-ws-v0.3.0...compio-ws-v0.3.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-log, compio-runtime, compio-macros, compio-net, compio-io, compio-tls

## [0.3.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion compio-ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-ws"
version = "0.3.0"
version = "0.3.1"
description = "WebSocket library for the compio runtime"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "websocket"]
Expand Down
6 changes: 6 additions & 0 deletions compio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.1](https://github.com/compio-rs/compio/compare/compio-v0.18.0...compio-v0.18.1) - 2026-02-05

### Other

- updated the following local packages: compio-buf, compio-buf, compio-log, compio-driver, compio-runtime, compio-runtime, compio-fs, compio-macros, compio-macros, compio-net, compio-quic, compio-io, compio-dispatcher, compio-process, compio-signal, compio-tls, compio-ws

## [0.18.0](https://github.com/compio-rs/compio/compare/v0.17.0...v0.18.0) - 2026-01-28

### Added
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.18.0"
version = "0.18.1"
description = "Completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down