[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"]
include = ["src/**/*", "tests/**/*", "Cargo.toml", "README.md", "LICENSE"]
[lib]
name = "writ_client"
[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"] }