-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (39 loc) · 1.19 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
[package]
name = "eai"
version = "0.14.0"
edition = "2024"
rust-version = "1.85"
description = "Natural language to shell commands"
license = "MIT"
repository = "https://github.com/feliperbroering/eai"
homepage = "https://github.com/feliperbroering/eai"
readme = "README.md"
keywords = ["cli", "shell", "ai", "llm", "command-line"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
bincode = "2"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.6.2"
console = "0.15"
dialoguer = "0.11"
dirs = "6.0"
futures = "0.3.32"
indicatif = "0.17"
regex-lite = "0.1.9"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
scraper = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shlex = "1.3"
tokio = { version = "1.48", features = ["macros", "process", "rt-multi-thread", "time", "io-std", "io-util"] }
toml = "0.9"
which = "8.0"
zstd = { version = "0.13.3", features = ["default"] }
[build-dependencies]
bincode = "2"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
zip = "7.2.0"
zstd = "0.13.3"