-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (46 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
47 lines (46 loc) · 1.23 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
[package]
name = "nuts"
version = "0.1.2"
edition = "2021"
authors = ["PimoussTO <pimouss@wellcode.ai>"]
description = "Nuts CLI tool"
license = "MIT"
[dependencies]
ratatui = "0.26.0"
crossterm = "0.27.0"
inquire = "0.6.2"
syntect = "5.1.0"
console = "0.15.8"
dialoguer = "0.11.0"
clap = { version = "4.4", features = ["derive"] }
rustyline = "12.0.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde_json = "1.0"
anthropic = "0.0.8"
tokio = { version = "1.0", features = ["full"] }
dirs = "5.0"
serde = { version = "1.0", features = ["derive"] }
indicatif = "0.17"
serde_yaml = "0.9"
tokio-util = "0.7"
async-trait = "0.1"
termion = "2.0"
statistical = "1.0"
url = "2.5.0"
axum = "0.7"
tracing = "0.1"
rand = "0.8"
tower-http = { version = "0.5", features = ["trace"] }
tracing-subscriber = "0.3"
hyper = { version = "1.0", features = ["full"] }
tower = "0.4"
axum-server = "0.6"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
miette = { version = "7", features = ["fancy"] }
comfy-table = "=7.1.3"
regex = "1"
rmcp = { version = "0.8", features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest", "reqwest", "transport-sse-client-reqwest"] }
[[bin]]
name = "nuts"
path = "src/main.rs"