[package]
edition = "2024"
rust-version = "1.85"
name = "millipede-browser"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "BrowserCrawler core, BrowserProvider trait, and BrowserPool for the Millipede web crawler."
readme = "README.md"
keywords = [
"crawler",
"browser",
"headless",
"scraper",
]
categories = [
"web-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/satvik007/millipede"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "millipede_browser"
path = "src/lib.rs"
[[test]]
name = "kind"
path = "tests/kind.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[[test]]
name = "smart"
path = "tests/smart.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "surface"
path = "tests/surface.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
features = ["serde"]
[dependencies.futures-util]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.millipede-core]
version = "0.1.0"
[dependencies.millipede-fingerprint]
version = "0.1.0"
[dependencies.millipede-html]
version = "0.1.0"
[dependencies.millipede-http]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.wiremock]
version = "=0.6.4"
[lints.clippy]
await_holding_lock = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tokio_unstable)"]