claude-agent-sdk-rust/Cargo.toml
Cobb Hayes 2aa3cd07b7 Public-flip audit: URL refresh + minor scrubs
Repository URLs, version strings, and example creds normalized for the
public git.sulkta.com endpoint. No code-behavior change.

Audit-applied by the public-flip rolling-audit pass — see
kayos/openclaw-workspace memory/2026-05-27 logs for the campaign
context.
2026-05-27 10:59:57 -07:00

39 lines
1 KiB
TOML

[package]
name = "claude-agent-sdk"
version = "0.0.1"
edition = "2024"
license = "MIT"
description = "Async Rust SDK for the Claude Agent CLI (subprocess-based, mirrors the Python claude-agent-sdk)."
repository = "https://git.sulkta.com/Sulkta-Coop/claude-agent-sdk-rust"
readme = "README.md"
keywords = ["claude", "anthropic", "agent", "sdk", "async"]
categories = ["api-bindings", "asynchronous"]
rust-version = "1.85"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tracing = "0.1"
futures-core = "0.3"
async-stream = "0.3"
[dev-dependencies]
anyhow = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "test-util"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures-util = "0.3"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "with_options"
path = "examples/with_options.rs"
[[example]]
name = "interactive"
path = "examples/interactive.rs"