-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 757 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 757 Bytes
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
[package]
name = "artificial-analysis-cli"
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "CLI for querying AI model benchmarks, pricing, and performance from Artificial Analysis"
repository = "https://github.com/aneym/artificial-analysis-cli"
authors = ["Alex Neyman"]
keywords = ["ai", "llm", "benchmarks", "cli", "model-comparison"]
categories = ["command-line-utilities"]
[[bin]]
name = "aa-cli"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
[profile.release]
strip = true
lto = true
codegen-units = 1