-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (34 loc) · 1.01 KB
/
Cargo.toml
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
[package]
name = "robopages"
description = "CLI and API server for Robopages, a YAML based files for describing tools to large language models (LLMs)"
authors = ["Simone Margaritelli ([email protected])"]
version = "0.4.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/dreadnode/robopages-cli"
homepage = "https://github.com/dreadnode/robopages"
license = "MIT"
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.9.0"
actix-web-lab = "0.23.0"
anyhow = "1.0.90"
async-ssh2-tokio = "0.8.12"
camino = { version = "1.1.9", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive"] }
env_logger = "0.11.5"
futures = "0.3.31"
glob = "0.3.1"
include_dir = "0.7.4"
lazy-regex = "3.3.0"
log = "0.4.22"
regex = "1.11.0"
reqwest = "0.12.8"
serde = { version = "1.0.211", features = ["derive"] }
serde_yaml = "0.9.34"
shell-escape = "0.1.5"
shellexpand = { version = "3.1.0", features = ["full"] }
tempfile = "3.13.0"
tokio = { version = "1.41.0", features = ["full"] }
which = "6.0.3"
zip = "2.2.0"