[package]
edition = "2021"
name = "agentctl-auth"
version = "0.1.0"
authors = ["potato"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified auth pool and LLM API client for Claude Max Plan, OpenAI, and more"
readme = "README.md"
keywords = [
"ai",
"claude",
"anthropic",
"auth",
"llm",
]
categories = [
"authentication",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tonitangpotato/agentctl"
[lib]
name = "agentctl_auth"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]