Skip to content

Commit 9348ba9

Browse files
committed
Fix CI
1 parent 70a684a commit 9348ba9

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ jobs:
8484
- uses: actions/checkout@v6
8585
- uses: dtolnay/rust-toolchain@stable
8686
- name: Check examples
87-
run: cargo check --examples --features fetcher
87+
run: cargo check --examples --features fetcher,zip8,rustls

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ 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
23-
- Add support for zip8 and make it default
21+
- Update `reqwest` to v0.13
22+
- Update `thiserror` to v2
23+
- Update `heck` to v0.5
24+
- Add support for `zip` v8 and make it default
2425

2526
### Added
2627

chromiumoxide_pdl/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ readme = "../README.md"
1212
include = ["src/**/*", "LICENSE-*"]
1313

1414
[dependencies]
15-
once_cell = "1.8.0"
16-
regex = "1.5.4"
17-
quote = "1.0.10"
18-
proc-macro2 = "1.0.32"
15+
once_cell = "1.8"
16+
regex = "1.5"
17+
quote = "1"
18+
proc-macro2 = "1"
1919
heck = "0.5"
2020
serde_json = "1"
2121
serde = { version = "1", features = ["derive"], optional = true }
2222
chromiumoxide_types = { path = "../chromiumoxide_types", version = "0.9" }
23-
either = "1.6.1"
23+
either = "1.6"
2424

2525
[features]
2626
serde = ["dep:serde"]

0 commit comments

Comments
 (0)