[package]
edition = "2024"
rust-version = "1.85.0"
name = "chrome-for-testing"
version = "0.2.2"
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.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.135"
[dependencies.thiserror]
version = "2.0.16"
[dependencies.time]
version = "0.3.41"
features = [
"serde",
"parsing",
"macros",
]
[dependencies.url]
version = "2.5.4"
[dev-dependencies.assertr]
version = "0.3.9"
[dev-dependencies.mockito]
version = "1.6.1"
[dev-dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt-multi-thread",
]