[package]
edition = "2024"
rust-version = "1.85.1"
name = "chrome-for-testing"
version = "0.2.3"
authors = ["Lukas Potthast <privat@lukas-potthast.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Interact with the chrome-for-testing JSON API.
"""
readme = "README.md"
keywords = [
"chrome",
"testing",
"chromedriver",
]
categories = [
"web-programming",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lpotthast/chrome-for-testing"
[lib]
name = "chrome_for_testing"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
[dependencies.serde]
version = "1.0.194"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.135"
[dependencies.thiserror]
version = "2.0.5"
[dependencies.time]
version = "0.3.0"
features = [
"serde",
"parsing",
"macros",
]
[dependencies.url]
version = "2.4.0"
[dev-dependencies.assertr]
version = "0.4.4"
[dev-dependencies.mockito]
version = "1.7.2"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt-multi-thread",
]