diff --git a/Cargo.toml b/Cargo.toml index 8abf9c8..f78fbc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clamav-client" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Thorsten Blum "] homepage = "https://github.com/toblux/rust-clamav-client" diff --git a/README.md b/README.md index cfabcba..bad2c45 100644 --- a/README.md +++ b/README.md @@ -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