rustboxd 0.1.0

A fast, async Rust library for scraping Letterboxd data with type safety and comprehensive error handling
Documentation
[package]
name = "rustboxd"
version = "0.1.0"
edition = "2021"
description = "A fast, async Rust library for scraping Letterboxd data with type safety and comprehensive error handling"
license = "MIT"
authors = ["Pranav Karra <pranav.karra.3301@gmail.com>"]
keywords = ["letterboxd", "scraping", "movies", "films", "async"]
categories = ["web-programming", "api-bindings"]
repository = "https://github.com/Pranav-Karra-3301/rustboxd"
homepage = "https://github.com/Pranav-Karra-3301/rustboxd"
documentation = "https://docs.rs/rustboxd"
readme = "README.md"
exclude = [
    "python/",
    ".github/",
    "examples/exports/",
]

[dependencies]
reqwest = { version = "0.12", features = ["json"] }
scraper = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
thiserror = "1.0"
url = "2.5"
chrono = { version = "0.4", features = ["serde"] }
regex = "1.10"
async-trait = "0.1"
urlencoding = "2.1"

[dev-dependencies]
tokio-test = "0.4"

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