Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
toblux committed Mar 21, 2024
1 parent 5666fe7 commit 0ad39b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clamav-client"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = ["Thorsten Blum <[email protected]>"]
homepage = "https://github.com/toblux/rust-clamav-client"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
clamav-client = "0.5.0"
clamav-client = "0.5.1"
```

To use the `async` functions in `clamav_client::tokio`, add this to your `Cargo.toml`:

```toml
[dependencies]
clamav-client = { version = "0.5.0", features = ["tokio"] }
clamav-client = { version = "0.5.1", features = ["tokio"] }
```

To scan Tokio streams, enable the `tokio-stream` feature instead and add this to your `Cargo.toml`:

```toml
[dependencies]
clamav-client = { version = "0.5.0", features = ["tokio-stream"] }
clamav-client = { version = "0.5.1", features = ["tokio-stream"] }
```

Support for `async-std` is also available by enabling the `async-std` feature:

```toml
[dependencies]
clamav-client = { version = "0.5.0", features = ["async-std"] }
clamav-client = { version = "0.5.1", features = ["async-std"] }
```

## Migrations
Expand Down

0 comments on commit 0ad39b6

Please sign in to comment.