-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
105 lines (80 loc) · 2.17 KB
/
Cargo.toml
File metadata and controls
105 lines (80 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[package]
name = "modelsdev"
version = "0.11.4"
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", "time"] }
# 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.30", features = ["unstable-rendered-line-info"] }
crossterm = "0.29"
# Charts / visualization
tui-piechart = "0.3"
# 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"
# Text wrapping
textwrap = "0.16"
# Markdown rendering (CLI mode)
termimad = "0.30"
# Interactive prompts (fuzzy version picker)
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
# Markdown parsing (changelog normalization)
comrak = { version = "0.36", default-features = false }
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# Terminal styling (used for dialoguer theme)
console = "0.15"
unicode-width = "0.2"
[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" },
]