-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 928 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 928 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
28
29
30
31
32
33
[package]
name = "ai-in-terminal"
version = "0.6.0"
edition = "2021"
description = "hey — natural language to shell commands, with personality. Speaks Claude, Codex, and OpenRouter."
license = "MIT"
repository = "https://github.com/subinium/hey-cli"
homepage = "https://github.com/subinium/hey-cli"
readme = "README.md"
keywords = ["cli", "shell", "ai", "claude", "codex"]
categories = ["command-line-utilities"]
authors = ["subinium"]
[[bin]]
name = "hey"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt", "macros", "io-util", "process"] }
anyhow = "1"
ctrlc = "3"
tempfile = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
opt-level = "z"