[package]
edition = "2024"
rust-version = "1.85"
name = "openrouter-cli"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for OpenRouter account and SDK workflows"
homepage = "https://github.com/realmorrisliu/openrouter-rs"
documentation = "https://github.com/realmorrisliu/openrouter-rs/tree/main/crates/openrouter-cli"
readme = "README.md"
keywords = [
"openrouter",
"cli",
"ai",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/realmorrisliu/openrouter-rs"
resolver = "2"
[[bin]]
name = "openrouter-cli"
path = "src/main.rs"
[[test]]
name = "discovery_commands"
path = "tests/discovery_commands.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "live_smoke"
path = "tests/live_smoke.rs"
[[test]]
name = "management_commands"
path = "tests/management_commands.rs"
[[test]]
name = "profile_show"
path = "tests/profile_show.rs"
[[test]]
name = "usage_commands"
path = "tests/usage_commands.rs"
[dependencies.anyhow]
version = "1.0.86"
[dependencies.clap]
version = "4.5.37"
features = ["derive"]
[dependencies.openrouter-rs]
version = "0.7.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8.20"
[dev-dependencies.assert_cmd]
version = "2.0.16"
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.tempfile]
version = "3.19.1"