diff --git a/Cargo.toml b/Cargo.toml index 9012763..e58ab36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clamav-client" -version = "1.0.1" +version = "2.0.0" edition = "2021" rust-version = "1.63.0" authors = ["Thorsten Blum "] diff --git a/README.md b/README.md index 117bfb2..4d0dc66 100644 --- a/README.md +++ b/README.md @@ -15,28 +15,28 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = "1.0.1" +clamav-client = "2.0.0" ``` To use the `async` functions in `clamav_client::tokio`, add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["tokio"] } +clamav-client = { version = "2.0.0", features = ["tokio"] } ``` To scan Tokio streams, enable the `tokio-stream` feature instead and add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["tokio-stream"] } +clamav-client = { version = "2.0.0", features = ["tokio-stream"] } ``` Support for `async-std` is also available by enabling the `async-std` feature: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["async-std"] } +clamav-client = { version = "2.0.0", features = ["async-std"] } ``` ## Migrations