writ-client 1.0.0

Official Rust SDK for Writ — drive the local writ-agentd daemon and Writ Cloud (scrape, map, crawl) from one client
Documentation
[package]
name = "writ-client"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "Official Rust SDK for Writ — drive the local writ-agentd daemon and Writ Cloud (scrape, map, crawl) from one client"
readme = "README.md"
repository = "https://github.com/usewrit/writ-sdks"
homepage = "https://github.com/usewrit/writ-sdks/tree/main/rust"
documentation = "https://docs.rs/writ-client"
authors = ["The Writ Project Authors"]
keywords = ["writ", "automation", "browser", "sdk"]
categories = ["api-bindings"]
# Keep the published .crate to source + licence + readme. Without this, `cargo
# package` sweeps in whatever else is sitting in the directory — `target/` alone
# is over a gigabyte here.
include = ["src/**/*", "tests/**/*", "Cargo.toml", "README.md", "LICENSE"]

[lib]
name = "writ_client"

# Standalone crate: never absorbed into a parent cargo workspace.
[workspace]

[dependencies]
reqwest = { version = "0.12", features = ["json", "stream", "multipart"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
futures-core = "0.3"
futures-util = "0.3"
bytes = "1"

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util", "time"] }