modelsdev 0.10.1

A fast TUI and CLI for browsing AI models, benchmarks, and coding agents
[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]
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"

# HTTP
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-native-roots", "blocking"] }

# Async runtime
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# Regex
regex = "1"

# String similarity (Jaro-Winkler for T6 fuzzy matching)
strsim = "0.11"

# TUI
ratatui = { version = "0.29", features = ["unstable-rendered-line-info"] }
crossterm = "0.28"

# Error handling
anyhow = "1"

# Formatting
comfy-table = "7"

# Clipboard
arboard = "3"

# Browser
open = "5"

# Version comparison
semver = "1"

# Cross-platform paths
dirs = "6"

# Config file parsing
toml = "0.8"

# Markdown rendering (CLI mode)
termimad = "0.30"

# Interactive prompts (fuzzy version picker)
dialoguer = { version = "0.11", features = ["fuzzy-select"] }

# Date/time handling
chrono = { version = "0.4", features = ["serde"] }

# Terminal styling (used for dialoguer theme)
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" },
]