[package]
edition = "2021"
rust-version = "1.74"
name = "bob-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial Rust SDK for the bob agent CLI — detection, install, keychain, run. Not affiliated with or endorsed by the bob maintainers."
readme = "README.md"
keywords = [
"bob",
"agent",
"cli",
"sdk",
"keychain",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/getlatentic/agent-harness"
[lib]
name = "bob_rs"
path = "src/lib.rs"
[[example]]
name = "run_bob"
path = "examples/run_bob.rs"
[dependencies.cli-stream]
version = "0.1.0"
[dependencies.dirs]
version = "5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3.6"
features = [
"sync-secret-service",
"crypto-rust",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3.6"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3.6"
features = ["windows-native"]