[package]
name = "modelsdev"
version = "0.10.1"
edition = "2021"
description = "A fast TUI and CLI for browsing AI models, benchmarks, and coding agents"
license = "MIT"
repository = "https://github.com/arimxyer/models"
readme = "README.md"
keywords = ["cli", "tui", "ai", "models", "llm"]
categories = ["command-line-utilities"]
[[bin]]
name = "models"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-native-roots", "blocking"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
strsim = "0.11"
ratatui = { version = "0.29", features = ["unstable-rendered-line-info"] }
crossterm = "0.28"
anyhow = "1"
comfy-table = "7"
arboard = "3"
open = "5"
semver = "1"
dirs = "6"
toml = "0.8"
termimad = "0.30"
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
chrono = { version = "0.4", features = ["serde"] }
console = "0.15"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[package.metadata.deb]
maintainer = "arimxyer"
copyright = "2024-2026 arimxyer"
license-file = ["LICENSE", "0"]
section = "utils"
priority = "optional"
assets = [
["target/release/models", "usr/bin/", "755"],
]
extended-description = "Browse AI models, benchmarks, and coding agents from the terminal"
depends = "libc6"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/models", dest = "/usr/bin/models", mode = "0755" },
]