agent-sdk-rs 0.1.3

Pure-Rust agent SDK for production tool-calling loops, multi-provider, type-safe, and ergonomic
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 = "agent-sdk-rs"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust agent SDK for production tool-calling loops, multi-provider, type-safe, and ergonomic"
homepage = "https://github.com/Milind220/agent-sdk-rs"
documentation = "https://docs.rs/agent-sdk-rs"
readme = "README.md"
keywords = [
    "agent",
    "sdk",
    "llm",
    "tool-calling",
    "automation",
]
categories = [
    "development-tools",
    "api-bindings",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/Milind220/agent-sdk-rs"

[features]
claude-code = []
default = []

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

[[bin]]
name = "claude_code"
path = "src/bin/claude_code.rs"
required-features = ["claude-code"]

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

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

[dependencies.anthropic-ai-sdk]
version = "0.2.27"

[dependencies.async-stream]
version = "0.3.6"

[dependencies.async-trait]
version = "0.1.89"

[dependencies.futures-util]
version = "0.3.31"

[dependencies.glob]
version = "0.3.3"

[dependencies.regex]
version = "1.11.1"

[dependencies.reqwest]
version = "0.12.24"
features = [
    "json",
    "rustls-tls",
]
default-features = false

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

[dependencies.serde_json]
version = "1.0.145"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.48.0"
features = [
    "macros",
    "rt-multi-thread",
    "time",
    "process",
]

[dependencies.walkdir]
version = "2.5.0"

[dev-dependencies]