diff --git a/Cargo.lock b/Cargo.lock index a499a9f..03677e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,9 +125,9 @@ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" [[package]] name = "proc-macro2" -version = "1.0.81" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" dependencies = [ "unicode-ident", ] @@ -247,9 +247,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "syn" -version = "2.0.60" +version = "2.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" +checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9" dependencies = [ "proc-macro2", "quote", @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "windows-capture" -version = "1.1.8" +version = "1.1.9" dependencies = [ "parking_lot", "rayon", @@ -316,7 +316,7 @@ dependencies = [ [[package]] name = "windows-capture-python" -version = "1.1.8" +version = "1.1.9" dependencies = [ "pyo3", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index ad33bb0..2663842 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-capture" -version = "1.1.8" +version = "1.1.9" authors = ["NiiightmareXD"] edition = "2021" description = "Fastest Windows Screen Capture Library For Rust 🔥" diff --git a/README.md b/README.md index 8d6f329..75e7be5 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add this library to your `Cargo.toml`: ```toml [dependencies] -windows-capture = "1.1.8" +windows-capture = "1.1.9" ``` or run this command diff --git a/src/lib.rs b/src/lib.rs index d978a68..681ccb5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,7 +22,7 @@ //! //! ```toml //! [dependencies] -//! windows-capture = "1.1.8" +//! windows-capture = "1.1.9" //! ``` //! or run this command //! diff --git a/windows-capture-python/Cargo.toml b/windows-capture-python/Cargo.toml index f1a6c0b..6765dda 100644 --- a/windows-capture-python/Cargo.toml +++ b/windows-capture-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-capture-python" -version = "1.1.8" +version = "1.1.9" authors = ["NiiightmareXD"] edition = "2021" description = "Fastest Windows Screen Capture Library For Python 🔥" @@ -24,6 +24,7 @@ crate-type = ["cdylib"] pyo3 = { version = "0.21.2", features = [ "extension-module", "auto-initialize", + "abi3", ] } thiserror = "1.0.60" windows-capture = { path = ".." } diff --git a/windows-capture-python/pyproject.toml b/windows-capture-python/pyproject.toml index eecf599..b5247ac 100644 --- a/windows-capture-python/pyproject.toml +++ b/windows-capture-python/pyproject.toml @@ -4,10 +4,10 @@ build-backend = "maturin" [project] name = "windows-capture" -version = "1.1.8" +version = "1.1.9" description = "Fastest Windows Screen Capture Library For Python 🔥" readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" license = "MIT" authors = [{ name = "NiiightmareXD" }] keywords = ["screen", "capture", "screenshot", "graphics", "windows"]