Skip to content

Commit

Permalink
Merge branch 'main' of github.com:mattsse/chromiumoxide into invalid-…
Browse files Browse the repository at this point in the history
…response-value
  • Loading branch information
ryo33 committed Aug 15, 2024
2 parents 20ef13b + ef98533 commit bfe74c9
Show file tree
Hide file tree
Showing 22 changed files with 62,973 additions and 45,787 deletions.
25 changes: 15 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chromiumoxide"
version = "0.5.7"
version = "0.7.0"
rust-version = "1.70"
authors = ["Matthias Seitz <[email protected]>"]
edition = "2021"
Expand All @@ -13,21 +13,21 @@ keywords = ["chrome", "chromedriver", "puppeteer", "automation"]
categories = ["web-programming", "api-bindings", "development-tools::testing"]

[dependencies]
async-tungstenite = "0.23"
async-tungstenite = "0.27.0"
serde = { version = "1", features = ["derive"] }
async-std = { version = "1.5", features = [
"attributes",
"unstable",
], optional = true }
futures = "0.3"
chromiumoxide_types = { path = "chromiumoxide_types", version = "0.5" }
chromiumoxide_cdp = { path = "chromiumoxide_cdp", version = "0.5" }
chromiumoxide_fetcher = { path = "chromiumoxide_fetcher", version = "0.5", default-features = false, optional = true }
chromiumoxide_types = { path = "chromiumoxide_types", version = "0.7" }
chromiumoxide_cdp = { path = "chromiumoxide_cdp", version = "0.7" }
chromiumoxide_fetcher = { path = "chromiumoxide_fetcher", version = "0.7", default-features = false, optional = true }
serde_json = "1"
which = "4"
which = "6"
thiserror = "1"
url = "2"
base64 = "0.21"
base64 = "0.22"
fnv = "1"
futures-timer = "3"
cfg-if = "1"
Expand All @@ -42,11 +42,11 @@ tokio = { version = "1", features = [
tracing = "0.1"
pin-project-lite = "0.2"
dunce = "1"
bytes = { version = "1.4.0", features = ["serde"], optional = true }
reqwest = { version = "0.11.20", default-features = false }
bytes = { version = "1", features = ["serde"], optional = true }
reqwest = { version = "0.12", default-features = false }

[target.'cfg(windows)'.dependencies]
winreg = "0.51"
winreg = "0.52"

[dev-dependencies]
quote = "1"
Expand All @@ -61,6 +61,7 @@ async-std-runtime = ["async-std", "async-tungstenite/async-std-runtime"]
tokio-runtime = ["tokio", "async-tungstenite/tokio-runtime"]
fetcher = []
bytes = ["dep:bytes"]
serde0 = []

# Temporary features until cargo weak dependencies bug is fixed
# See https://github.com/rust-lang/cargo/issues/10801
Expand All @@ -77,6 +78,10 @@ required-features = ["tokio-runtime"]
name = "iframe-workaround"
required-features = ["tokio-runtime", "tokio"]

[[example]]
name = "storage-cookie"
required-features = ["tokio-runtime"]


[[example]]
name = "httpfuture"
Expand Down
19 changes: 11 additions & 8 deletions chromiumoxide_cdp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chromiumoxide_cdp"
version = "0.5.2"
version = "0.7.0"
authors = ["Matthias Seitz <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -11,13 +11,16 @@ repository = "https://github.com/mattsse/chromiumoxide"
readme = "../README.md"
include = ["src/**/*", "*.pdl", "LICENSE-*"]

[features]
serde0 = []

[dev-dependencies]
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.5"}
ureq = "2.6.2"
tempfile = "3.2.0"
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.7" }
ureq = "2.10.0"
tempfile = "3.10.1"

[dependencies]
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.5"}
chromiumoxide_types = { path = "../chromiumoxide_types", version = "0.5"}
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.72"
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.7" }
chromiumoxide_types = { path = "../chromiumoxide_types", version = "0.7" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading

0 comments on commit bfe74c9

Please sign in to comment.