Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Nov 7, 2024
1 parent da174b8 commit 2815280
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fs4"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.11.0"
version = "0.11.1"
rust-version = "1.75.0"
authors = ["Dan Burkert <[email protected]>", "Al Liu <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,37 +23,37 @@ This is a fork of the [fs2-rs](https://github.com/danburkert/fs2-rs) crate, the
- std
```toml
[dependencies]
fs4 = { version = "0.10", features = ["sync"] }
fs4 = { version = "0.11", features = ["sync"] }
```

- [async-std runtime](https://crates.io/crates/async-std)
```toml
[dependencies]
fs4 = { version = "0.10", features = ["async-std"] }
fs4 = { version = "0.11", features = ["async-std"] }
```

- [fs-err](https://crates.io/crates/fs-err)
```toml
[dependencies]
fs4 = { version = "0.10", features = ["fs-err"] }
fs4 = { version = "0.11", features = ["fs-err"] }
```

- [fs-err-tokio](https://crates.io/crates/fs-err)
```toml
[dependencies]
fs4 = { version = "0.10", features = ["fs-err-tokio"] }
fs4 = { version = "0.11", features = ["fs-err-tokio"] }
```

- [smol runtime](https://crates.io/crates/smol)
```toml
[dependencies]
fs4 = { version = "0.10", features = ["smol"] }
fs4 = { version = "0.11", features = ["smol"] }
```

- [tokio runtime](https://crates.io/crates/tokio)
```toml
[dependencies]
fs4 = { version = "0.10", features = ["tokio"] }
fs4 = { version = "0.11", features = ["tokio"] }
```

## Features
Expand Down

0 comments on commit 2815280

Please sign in to comment.