[package]
edition = "2024"
rust-version = "1.85"
name = "lkr-cli"
version = "0.1.0"
authors = ["Iori Yoshida <yottayoshida@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for LLM Key Ring — manage LLM API keys via macOS Keychain"
homepage = "https://github.com/yottayoshida/llm-key-ring"
readme = "README.md"
keywords = [
"llm",
"api-key",
"keychain",
"secret",
"cli",
]
categories = [
"command-line-utilities",
"authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yottayoshida/llm-key-ring"
resolver = "2"
[[bin]]
name = "lkr"
path = "src/main.rs"
[dependencies.arboard]
version = "3"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.lkr-core]
version = "0.1.0"
[dependencies.rpassword]
version = "5"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.zeroize]
version = "1"
features = ["derive"]