[package]
edition = "2021"
name = "argus-robots"
version = "0.1.0"
authors = ["Argus Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Robots.txt parsing and caching for web crawling"
homepage = "https://github.com/dedsecrattle/argus"
documentation = "https://docs.rs/argus-robots"
readme = "README.md"
keywords = [
"crawler",
"robots",
"txt",
"parsing",
]
categories = [
"parsing",
"web-programming",
]
license = "MIT"
repository = "https://github.com/dedsecrattle/argus"
[lib]
name = "argus_robots"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.argus-common]
version = "0.1.0"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"