Skip to content

Commit

Permalink
Update dependencies (#177)
Browse files Browse the repository at this point in the history
* Update dependencies

* Bump versions to 0.5.2 where applicable

* Bump MSRV to 1.70 as needed for async-tungstenite
  • Loading branch information
djc authored Sep 29, 2023
1 parent 379d9c7 commit 0adb14b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion chromiumoxide_cdp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "chromiumoxide_cdp"
version = "0.5.1"
authors = ["Matthias Seitz <[email protected]>"]
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"
Expand Down
6 changes: 3 additions & 3 deletions chromiumoxide_fetcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "chromiumoxide_fetcher"
version = "0.5.1"
version = "0.5.2"
authors = ["Matthias Seitz <[email protected]>"]
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"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion chromiumoxide_pdl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "chromiumoxide_pdl"
version = "0.5.1"
authors = ["Matthias Seitz <[email protected]>"]
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"
Expand Down
1 change: 0 additions & 1 deletion src/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ impl<T: EventMessage + Unpin> Connection<T> {
let config = WebSocketConfig {
max_message_size: None,
max_frame_size: None,
max_send_queue: None,
..Default::default()
};

Expand Down

0 comments on commit 0adb14b

Please sign in to comment.