diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e91ac534..fe01f629 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: "1.64.0" + toolchain: "1.70.0" override: true - uses: actions-rs/cargo@v1 with: diff --git a/Cargo.toml b/Cargo.toml index 91d2dec4..b46e4b0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "chromiumoxide" -version = "0.5.1" -rust-version = "1.64" +version = "0.5.2" +rust-version = "1.70" authors = ["Matthias Seitz "] edition = "2021" license = "MIT OR Apache-2.0" @@ -13,7 +13,7 @@ keywords = ["chrome", "chromedriver", "puppeteer", "automation"] categories = ["web-programming", "api-bindings", "development-tools::testing"] [dependencies] -async-tungstenite = "0.22" +async-tungstenite = "0.23" serde = { version = "1", features = ["derive"] } async-std = { version = "1.5", features = [ "attributes", @@ -44,7 +44,7 @@ pin-project-lite = "0.2" dunce = "1" [target.'cfg(windows)'.dependencies] -winreg = "0.50" +winreg = "0.51" [dev-dependencies] quote = "1" diff --git a/chromiumoxide_cdp/Cargo.toml b/chromiumoxide_cdp/Cargo.toml index d1a8eb18..7601c617 100644 --- a/chromiumoxide_cdp/Cargo.toml +++ b/chromiumoxide_cdp/Cargo.toml @@ -3,7 +3,7 @@ name = "chromiumoxide_cdp" version = "0.5.1" authors = ["Matthias Seitz "] edition = "2021" -rust-version = "1.64" +rust-version = "1.70" description = "Contains all the generated types for chromiumoxide" license = "MIT OR Apache-2.0" homepage = "https://github.com/mattsse/chromiumoxide" diff --git a/chromiumoxide_fetcher/Cargo.toml b/chromiumoxide_fetcher/Cargo.toml index f3befeff..7cb53a84 100644 --- a/chromiumoxide_fetcher/Cargo.toml +++ b/chromiumoxide_fetcher/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "chromiumoxide_fetcher" -version = "0.5.1" +version = "0.5.2" authors = ["Matthias Seitz "] edition = "2021" -rust-version = "1.64" +rust-version = "1.70" license = "MIT OR Apache-2.0" description = "Contains a chromium fetcher" homepage = "https://github.com/mattsse/chromiumoxide" @@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE-*"] [dependencies] thiserror = "1" anyhow = "1" -directories = "4" +directories = "5" os_info = { version = "3", default-features = false } zip = { version = "0.6", default-features = false, features = ["deflate"] } async-std = { version = "1.5", features = ["unstable"], optional = true } diff --git a/chromiumoxide_pdl/Cargo.toml b/chromiumoxide_pdl/Cargo.toml index 86c0ba0f..42fadc57 100644 --- a/chromiumoxide_pdl/Cargo.toml +++ b/chromiumoxide_pdl/Cargo.toml @@ -3,7 +3,7 @@ name = "chromiumoxide_pdl" version = "0.5.1" authors = ["Matthias Seitz "] edition = "2021" -rust-version = "1.64" +rust-version = "1.70" license = "MIT OR Apache-2.0" description = "Contains a PDL parser and rust generator" homepage = "https://github.com/mattsse/chromiumoxide" diff --git a/src/conn.rs b/src/conn.rs index 8b028c0d..ff5312b9 100644 --- a/src/conn.rs +++ b/src/conn.rs @@ -41,7 +41,6 @@ impl Connection { let config = WebSocketConfig { max_message_size: None, max_frame_size: None, - max_send_queue: None, ..Default::default() };