diff --git a/Cargo.toml b/Cargo.toml index f37b41c..4bed35a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wintun-bindings" -version = "0.6.4" +version = "0.7.0" edition = "2021" authors = [ "ssrlive", @@ -22,6 +22,7 @@ targets = [ "i686-pc-windows-msvc", "x86_64-pc-windows-msvc", ] +features = ["async"] [features] default = [] diff --git a/README.md b/README.md index ff89dfe..ee5495d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ wintun's internal ring buffer. Just add `async` feature to your `Cargo.toml`: ```toml [dependencies] - wintun-bindings = { version = "0.6", features = ["async"] } + wintun-bindings = { version = "0.7", features = ["async"] } ``` And simply transform your `Session` into an `AsyncSession`: ```rust