[package]
edition = "2024"
rust-version = "1.91"
name = "agent-sdk-cli"
version = "0.9.0"
authors = ["Bipa <engineering@bipa.app>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Developer-experience CLI for the Agent SDK (e.g. installs the local Langfuse + OTel collector stack)"
homepage = "https://github.com/bipa-app/agent-sdk"
readme = false
keywords = [
"agent",
"llm",
"cli",
"observability",
"langfuse",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/bipa-app/agent-sdk"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[[bin]]
name = "agent-sdk"
path = "src/main.rs"
[[test]]
name = "init_smoke"
path = "tests/init_smoke.rs"
[dependencies.agent-sdk]
version = "0.9.0"
features = [
"openai",
"gemini",
"vertex",
"cloudflare",
]
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.tokio]
version = "1.52.0"
features = [
"sync",
"fs",
"process",
"time",
"macros",
"rt-multi-thread",
"macros",
"io-std",
"io-util",
]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(docsrs)",
]