forked from avocado-linux/avocado-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.12 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
48
49
50
51
52
[package]
name = "avocado-cli"
version = "0.16.0"
edition = "2021"
description = "Command line interface for Avocado."
authors = ["Avocado"]
license = "MIT"
repository = "https://github.com/avocado-framework/avocado-cli"
keywords = ["cli", "build", "provisioning", "containers", "extensions"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "avocado"
path = "src/main.rs"
[lib]
name = "avocado_cli"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
serde_yaml = "0.9"
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = [
"macros",
"rt-multi-thread",
"process",
"io-util",
] }
thiserror = "1.0"
directories = "5.0.1"
reqwest = { version = "0.12.7", default-features = false, features = [
"json",
"rustls-tls",
"stream",
] }
indicatif = "0.18"
futures-util = "0.3.30"
flate2 = "1.0.32"
tar = "0.4.41"
uuid = { version = "1.0", features = ["v4"] }
libc = "0.2"
walkdir = "2.4"
tempfile = "3.0"
regex = "1.0"
[dev-dependencies]
tokio-test = "0.4"
serial_test = "2.0.0"