Skip to content

Commit

Permalink
Merge pull request #84 from Berrysoft/release/0.8.0
Browse files Browse the repository at this point in the history
Prepare for 0.8.0 release
  • Loading branch information
Berrysoft authored Oct 7, 2023
2 parents f1a5192 + dde5c16 commit 3bb6a2d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ license = "MIT"
repository = "https://github.com/compio-rs/compio"

[workspace.dependencies]
compio-buf = { path = "./compio-buf" }
compio-driver = { path = "./compio-driver" }
compio-runtime = { path = "./compio-runtime" }
compio-macros = { path = "./compio-macros" }
compio-fs = { path = "./compio-fs" }
compio-net = { path = "./compio-net" }
compio-signal = { path = "./compio-signal" }
compio-buf = { path = "./compio-buf", version = "0.1.0" }
compio-driver = { path = "./compio-driver", version = "0.1.0" }
compio-runtime = { path = "./compio-runtime", version = "0.1.0" }
compio-macros = { path = "./compio-macros", version = "0.1.0" }
compio-fs = { path = "./compio-fs", version = "0.1.0" }
compio-net = { path = "./compio-net", version = "0.1.0" }
compio-signal = { path = "./compio-signal", version = "0.1.0" }
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ They don't support Windows.

## Quick start

With `macros` feature enabled, we can use the high level APIs to perform fs & net IO.
Add `compio` as dependency:

```
compio = { version = "0.8.0", features = ["macros"] }
```
Then we can use high level APIs to perform filesystem & net IO.

```rust
use compio::fs::File;
Expand All @@ -40,4 +45,4 @@ async fn main() {
}
```

While you can also control the low-level driver manually. See `driver` example of the repo.
You can also control the low-level driver manually. See `driver` example of the repo.
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.7.0"
version = "0.8.0"
description = "completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down

0 comments on commit 3bb6a2d

Please sign in to comment.