Skip to content

Commit bce9439

Browse files
committed
Update major dependencies
1 parent ed21356 commit bce9439

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Bump CDP to `r1566079`
1919
- Use a struct `Arg` for arguments to combine flags automatically
2020
- Browser process no longer inherits stdout
21+
- Update reqwest to 0.13
22+
- Update thiserror to 2
2123

2224
### Added
2325

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ keywords = ["chrome", "chromedriver", "puppeteer", "automation"]
1414
categories = ["web-programming", "api-bindings", "development-tools::testing"]
1515

1616
[dependencies]
17-
async-tungstenite = { version = "0.32.0", features = ["tokio-runtime"] }
17+
async-tungstenite = { version = "0.32", features = ["tokio-runtime"] }
1818
serde = { version = "1", features = ["derive"] }
1919
futures = "0.3"
2020
chromiumoxide_types = { path = "chromiumoxide_types", version = "0.8" }
2121
chromiumoxide_cdp = { path = "chromiumoxide_cdp", version = "0.8" }
2222
chromiumoxide_fetcher = { path = "chromiumoxide_fetcher", version = "0.8", default-features = false, optional = true }
2323
serde_json = "1"
2424
which = "8"
25-
thiserror = "1"
25+
thiserror = "2"
2626
url = "2"
2727
base64 = "0.22"
2828
fnv = "1"
@@ -39,10 +39,10 @@ tracing = "0.1"
3939
pin-project-lite = "0.2"
4040
dunce = "1"
4141
bytes = { version = "1", features = ["serde"], optional = true }
42-
reqwest = { version = "0.12", default-features = false }
42+
reqwest = { version = "0.13", default-features = false }
4343

4444
[target.'cfg(windows)'.dependencies]
45-
windows-registry = "0.5"
45+
windows-registry = "0.6"
4646

4747
[dev-dependencies]
4848
quote = "1"

chromiumoxide_fetcher/Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,24 @@ path = "tests/lib.rs"
2222
harness = true
2323

2424
[dev-dependencies]
25-
reqwest = { version = "0.12", features = [
26-
"rustls-tls",
27-
], default-features = false }
25+
reqwest = { version = "0.13", features = ["rustls"], default-features = false }
2826
tokio = { version = "1", features = ["rt", "fs", "process", "macros"] }
2927

3028
[dependencies]
31-
thiserror = "1"
29+
thiserror = "2"
3230
anyhow = "1"
3331
directories = "6"
3432
serde = { version = "1", features = ["derive"] }
3533
tracing = "0.1"
3634
zip = { version = "0.6", default-features = false, features = ["deflate"] }
3735
tokio = { version = "1", features = ["fs", "io-util"] }
38-
reqwest = { version = "0.12", default-features = false, features = ["json"] }
36+
reqwest = { version = "0.13", default-features = false, features = ["json"] }
3937

4038
[target.'cfg(target_os = "windows")'.dependencies]
4139
windows-version = "0.1"
4240

4341
[features]
4442
default = ["rustls"]
4543

46-
rustls = ["reqwest/rustls-tls"]
44+
rustls = ["reqwest/rustls"]
4745
native-tls = ["reqwest/native-tls"]

0 commit comments

Comments
 (0)