[package]
edition = "2024"
rust-version = "1.88"
name = "lmm-cli"
version = "0.1.0"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
"src/**",
"tests/**",
"docs/**",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LMM CLI preview: software discovery, setup planning, and read-only OAuth access"
homepage = "https://api.lmm.best"
readme = "README.md"
keywords = [
"lmm",
"cli",
"oauth",
"ai",
]
categories = ["command-line-utilities"]
license = "AGPL-3.0-only"
repository = "https://github.com/TokenNotIncluded/api.lmm.best"
[lib]
name = "lmm"
path = "src/lib.rs"
[[bin]]
name = "lmm"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "safety"
path = "tests/safety.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.fs2]
version = "0.4"
[dependencies.httparse]
version = "1.10"
[dependencies.keyring]
version = "3.6"
features = [
"apple-native",
"windows-native",
"sync-secret-service",
"crypto-rust",
"vendored",
]
[dependencies.open]
version = "5.3"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.url]
version = "2.5"
[dependencies.zeroize]
version = "1.8"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3.27"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = "thin"
strip = true