-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 954 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 954 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
[package]
name = "dpx-cli"
version = "0.4.0"
edition = "2024"
description = "Tu mentor senior de desarrollo en la terminal, impulsado por IA."
license = "MIT"
repository = "https://github.com/davidpp09/dpx-cli"
publish = false
[[bin]]
name = "dpx"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6.1", features = ["derive", "env"] }
dotenvy = "0.15.7"
rig-core = "0.37.0"
tokio = { version = "1.52.3", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["clock"] }
dirs = "5"
anyhow = "1"
termimad = "0.31"
futures = "0.3"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
toml = "0.8"
similar = "2"
crossterm = { version = "0.29", default-features = false, features = ["events"] }
rustyline = { version = "15", features = ["with-fuzzy"] }