spider-lib 1.1.3

A Rust-based web scraping framework inspired by Scrapy (Python).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "spider-lib"
version = "1.1.3"
authors = ["mzyui <mzyui@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust-based web scraping framework inspired by Scrapy (Python)."
homepage = "https://github.com/spider-lib/spider-lib"
documentation = "https://docs.rs/spider-lib"
readme = "README.md"
keywords = [
    "web-scraping",
    "crawler",
    "scraper",
    "async",
    "rust",
]
categories = [
    "web-programming",
    "development-tools",
    "parsing",
]
license = "MIT"
repository = "https://github.com/spider-lib/spider-lib"

[features]
checkpoint = ["spider-core/checkpoint"]
cookie-store = [
    "spider-core/cookie-store",
    "middleware-cookies",
]
core = [
    "spider-middleware/core",
    "spider-pipeline/core",
]
default = ["core"]
middleware-cache = ["spider-middleware/middleware-cache"]
middleware-cookies = ["spider-middleware/middleware-cookies"]
middleware-proxy = ["spider-middleware/middleware-proxy"]
middleware-robots = ["spider-middleware/middleware-robots"]
middleware-user-agent = ["spider-middleware/middleware-user-agent"]
pipeline-csv = ["spider-pipeline/pipeline-csv"]
pipeline-json = ["spider-pipeline/pipeline-json"]
pipeline-jsonl = ["spider-pipeline/pipeline-jsonl"]
pipeline-sqlite = ["spider-pipeline/pipeline-sqlite"]
pipeline-streaming-json = ["spider-pipeline/pipeline-streaming-json"]

[lib]
name = "spider_lib"
path = "src/lib.rs"

[[example]]
name = "quotes_scraper"
path = "examples/quotes_scraper.rs"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"

[dependencies.spider-core]
version = "0.1.7"

[dependencies.spider-downloader]
version = "0.1.3"

[dependencies.spider-macro]
version = "0.1.4"

[dependencies.spider-middleware]
version = "0.1.6"
features = ["core"]

[dependencies.spider-pipeline]
version = "0.1.6"

[dependencies.spider-util]
version = "0.1.2"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]