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

[workspace.dependencies]
compio = { path = "./compio", version = "0.19.1" }
compio-actor = { path = "./compio-actor", version = "0.1.0" }
compio-buf = { path = "./compio-buf", version = "0.8.3" }
compio-driver = { path = "./compio-driver", version = "0.12.4", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.12.3" }
compio-executor = { path = "./compio-executor", version = "0.1.3" }
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.10.1" }
compio-net = { path = "./compio-net", version = "0.12.2" }
compio-signal = { path = "./compio-signal", version = "0.10.0" }
compio = { path = "./compio", version = "0.20.0" }
compio-actor = { path = "./compio-actor", version = "0.1.1" }
compio-buf = { path = "./compio-buf", version = "0.9.0" }
compio-driver = { path = "./compio-driver", version = "0.13.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.13.0" }
compio-executor = { path = "./compio-executor", version = "0.1.4" }
compio-macros = { path = "./compio-macros", version = "0.2.1" }
compio-fs = { path = "./compio-fs", version = "0.12.1" }
compio-io = { path = "./compio-io", version = "0.10.2" }
compio-net = { path = "./compio-net", version = "0.13.0" }
compio-signal = { path = "./compio-signal", version = "0.10.1" }
compio-term = { path = "./compio-term", version = "0.1.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.11.0" }
compio-log = { path = "./compio-log", version = "0.2.0" }
compio-tls = { path = "./compio-tls", version = "0.10.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.9.1" }
compio-quic = { path = "./compio-quic", version = "0.8.0", default-features = false }
compio-ws = { path = "./compio-ws", version = "0.4.0", default-features = false }
compio-compat = { path = "./compio-compat", version = "0.1.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.11.1" }
compio-log = { path = "./compio-log", version = "0.2.1" }
compio-tls = { path = "./compio-tls", version = "0.11.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.9.2" }
compio-quic = { path = "./compio-quic", version = "0.8.1", default-features = false }
compio-ws = { path = "./compio-ws", version = "0.5.0", default-features = false }
compio-compat = { path = "./compio-compat", version = "0.1.1" }

async-io = "2.6.0"
bytes = "1.7.1"
Expand Down
20 changes: 20 additions & 0 deletions compio-actor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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).

## [Unreleased]

## [0.1.1](https://github.com/compio-rs/compio/compare/compio-actor-v0.1.0...compio-actor-v0.1.1) - 2026-09-05

### Added

- *(actor)* init ([#1000](https://github.com/compio-rs/compio/pull/1000))

### Fixed

- doc fmt & bump nix toolchain ([#1028](https://github.com/compio-rs/compio/pull/1028))
- *(actor)* first line of doc ([#1027](https://github.com/compio-rs/compio/pull/1027))
- *(style)* apply new nightly clippy::needless-nonzero-get ([#1022](https://github.com/compio-rs/compio/pull/1022))
2 changes: 1 addition & 1 deletion compio-actor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-actor"
version = "0.1.0"
version = "0.1.1"
description = "Actors for Compio"
categories = ["asynchronous", "concurrency"]
keywords = ["actor", "async", "compio"]
Expand Down
14 changes: 14 additions & 0 deletions compio-buf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0](https://github.com/compio-rs/compio/compare/compio-buf-v0.8.3...compio-buf-v0.9.0) - 2026-09-05

### Added

- *(buf)* make `IoBuf`, `SetLen`, and `IoBufMut` dyn-compatible ([#969](https://github.com/compio-rs/compio/pull/969))

### Fixed

- *(buf)* mutual recursive on memmap2 impl ([#1008](https://github.com/compio-rs/compio/pull/1008))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))

## 0.8.3 - 2026-06-14

### 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.3"
version = "0.9.0"
description = "Buffer trait for completion based async IO"
categories = ["asynchronous"]
keywords = ["async"]
Expand Down
10 changes: 10 additions & 0 deletions compio-compat/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.1.1](https://github.com/compio-rs/compio/compare/compio-compat-v0.1.0...compio-compat-v0.1.1) - 2026-09-05

### Added

- name the tasks the crates spawn ([#1004](https://github.com/compio-rs/compio/pull/1004))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))

## 0.1.0 - 2026-05-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion compio-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-compat"
version = "0.1.0"
version = "0.1.1"
description = "Compatibility layer for compio to work with various async runtimes."
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down
10 changes: 10 additions & 0 deletions compio-dispatcher/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.1](https://github.com/compio-rs/compio/compare/compio-dispatcher-v0.11.0...compio-dispatcher-v0.11.1) - 2026-09-05

### Added

- *(dispatcher)* attribute and name its tasks ([#1002](https://github.com/compio-rs/compio/pull/1002))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))

## 0.11.0 - 2026-05-27

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

## [Unreleased]

## [0.13.0](https://github.com/compio-rs/compio/compare/compio-driver-v0.12.4...compio-driver-v0.13.0) - 2026-09-05

### Added

- *(runtime,tls,ws)* [**breaking**] use PollFd in TLS ([#1012](https://github.com/compio-rs/compio/pull/1012))
- *(buf)* make `IoBuf`, `SetLen`, and `IoBufMut` dyn-compatible ([#969](https://github.com/compio-rs/compio/pull/969))

### Fixed

- *(driver/iour)* wake after draining a full SQ ([#1036](https://github.com/compio-rs/compio/pull/1036))
- *(driver,iour)* remove the CQE drain that freed multishot keys twice ([#1025](https://github.com/compio-rs/compio/pull/1025))
- *(style)* apply new nightly clippy::needless-nonzero-get ([#1022](https://github.com/compio-rs/compio/pull/1022))
- semicolon_in_expressions_from_macros ([#977](https://github.com/compio-rs/compio/pull/977))
- *(compio-fs)* populate ctime correctly ([#968](https://github.com/compio-rs/compio/pull/968))

### Other

- *(driver/iour)* track in_flight ops in a SlotMap keyed from op extra ([#1019](https://github.com/compio-rs/compio/pull/1019))
- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))
- *(driver)* assert what a dropped Proactor does with in-flight ops ([#1018](https://github.com/compio-rs/compio/pull/1018))
- format the cfg_select! bodies ([#990](https://github.com/compio-rs/compio/pull/990))
- *(driver,iour)* rewrap a doc comment past the comment width ([#986](https://github.com/compio-rs/compio/pull/986))
- bump cfg_aliases ([#980](https://github.com/compio-rs/compio/pull/980))

## 0.12.4 - 2026-07-06

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

## [Unreleased]

## [0.1.4](https://github.com/compio-rs/compio/compare/compio-executor-v0.1.3...compio-executor-v0.1.4) - 2026-09-05

### Added

- *(macros)* install the console subscriber before `block_on` ([#1020](https://github.com/compio-rs/compio/pull/1020))
- name the tasks the crates spawn ([#1004](https://github.com/compio-rs/compio/pull/1004))
- *(executor)* instrument tasks for tokio-console ([#987](https://github.com/compio-rs/compio/pull/987))

### Fixed

- *(runtime,executor)* re-export JoinError ([#1005](https://github.com/compio-rs/compio/pull/1005))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))
- format the cfg_select! bodies ([#990](https://github.com/compio-rs/compio/pull/990))
- *(executor)* skip empty sync-queue drain with a pending counter ([#976](https://github.com/compio-rs/compio/pull/976))

## 0.1.3 - 2026-07-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion compio-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-executor"
version = "0.1.3"
version = "0.1.4"
description = "Executor for compio"
categories = ["asynchronous"]
keywords = ["async", "executor"]
Expand Down
17 changes: 17 additions & 0 deletions compio-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.1](https://github.com/compio-rs/compio/compare/compio-fs-v0.12.0...compio-fs-v0.12.1) - 2026-09-05

### Added

- name the tasks the crates spawn ([#1004](https://github.com/compio-rs/compio/pull/1004))
- *(buf)* make `IoBuf`, `SetLen`, and `IoBufMut` dyn-compatible ([#969](https://github.com/compio-rs/compio/pull/969))

### Fixed

- semicolon_in_expressions_from_macros ([#977](https://github.com/compio-rs/compio/pull/977))
- *(compio-fs)* populate ctime correctly ([#968](https://github.com/compio-rs/compio/pull/968))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))
- bump cfg_aliases ([#980](https://github.com/compio-rs/compio/pull/980))

## 0.12.0 - 2026-05-27

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

## [Unreleased]

## [0.10.2](https://github.com/compio-rs/compio/compare/compio-io-v0.10.1...compio-io-v0.10.2) - 2026-09-05

### Added

- *(buf)* make `IoBuf`, `SetLen`, and `IoBufMut` dyn-compatible ([#969](https://github.com/compio-rs/compio/pull/969))

### Fixed

- *(io)* correct Vec reserve amount in vectored writes ([#1034](https://github.com/compio-rs/compio/pull/1034))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))

## 0.10.1 - 2026-06-14

### 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.10.1"
version = "0.10.2"
description = "IO traits for completion based async IO"
categories = ["asynchronous"]
keywords = ["async", "io"]
Expand Down
6 changes: 6 additions & 0 deletions compio-log/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.2.1](https://github.com/compio-rs/compio/compare/compio-log-v0.2.0...compio-log-v0.2.1) - 2026-09-05

### Added

- *(executor)* instrument tasks for tokio-console ([#987](https://github.com/compio-rs/compio/pull/987))

## 0.2.0 - 2026-05-27

### Added
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.2.0"
version = "0.2.1"
description = "Log of compio"
categories = ["asynchronous"]
readme = "README.md"
Expand Down
11 changes: 11 additions & 0 deletions compio-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/compio-rs/compio/compare/compio-macros-v0.2.0...compio-macros-v0.2.1) - 2026-09-05

### Added

- *(macros)* install the console subscriber before `block_on` ([#1020](https://github.com/compio-rs/compio/pull/1020))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))
- *(deps)* update syn requirement from 2.0.38 to 3.0.3 ([#981](https://github.com/compio-rs/compio/pull/981))

## 0.2.0 - 2026-05-27

### Added
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.2.0"
version = "0.2.1"
description = "Proc macro of compio"
categories = ["asynchronous"]
readme = "README.md"
Expand Down
19 changes: 19 additions & 0 deletions compio-net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.0](https://github.com/compio-rs/compio/compare/compio-net-v0.12.2...compio-net-v0.13.0) - 2026-09-05

### Added

- *(runtime,tls,ws)* [**breaking**] use PollFd in TLS ([#1012](https://github.com/compio-rs/compio/pull/1012))
- name the tasks the crates spawn ([#1004](https://github.com/compio-rs/compio/pull/1004))
- *(runtime)* [**breaking**] complete AsyncWrite for PollFd ([#993](https://github.com/compio-rs/compio/pull/993))
- *(net)* allow peek TcpStream ([#974](https://github.com/compio-rs/compio/pull/974))
- *(buf)* make `IoBuf`, `SetLen`, and `IoBufMut` dyn-compatible ([#969](https://github.com/compio-rs/compio/pull/969))

### Fixed

- *(runtime)* invalid param for PollFd on Windows ([#999](https://github.com/compio-rs/compio/pull/999))

### Other

- *(fmt)* apply new nightly rustfmt ([#1023](https://github.com/compio-rs/compio/pull/1023))
- format the cfg_select! bodies ([#990](https://github.com/compio-rs/compio/pull/990))

## 0.12.2 - 2026-07-06

### 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.12.2"
version = "0.13.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.9.2](https://github.com/compio-rs/compio/compare/compio-process-v0.9.1...compio-process-v0.9.2) - 2026-09-05

### Added

- name the tasks the crates spawn ([#1004](https://github.com/compio-rs/compio/pull/1004))

## 0.9.1 - 2026-05-27

### Changed
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.9.1"
version = "0.9.2"
description = "Processes for compio"
categories = ["asynchronous"]
keywords = ["async", "process"]
Expand Down
Loading