-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.25 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
[package]
name = "stackql-deploy"
version = "2.0.6"
edition = "2021"
rust-version = "1.75"
description = "Infrastructure-as-code framework for declarative cloud resource management using StackQL"
authors = ["StackQL Studios <info@stackql.io>"]
license = "MIT"
homepage = "https://stackql.io"
repository = "https://github.com/stackql/stackql-deploy-rs"
keywords = ["stackql", "infrastructure", "iac", "cloud", "devops"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
# docs.rs: this is a binary-only crate — no public library API to document.
# The README (above) is what crates.io renders on the package page.
[package.metadata.docs.rs]
no-default-features = true
[dependencies]
clap = { version = "4.3", features = ["derive"] }
colored = "2.0"
rustyline = "10.0"
tera = "1.19.0"
log = "0.4"
env_logger = "0.10"
zip = "0.6"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
indicatif = "0.17"
unicode-width = "0.1.10"
once_cell = "1.17.0"
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
thiserror = "1.0"
uuid = { version = "1.0", features = ["v4"] }
base64 = "0.21"
dotenvy = "0.15"
regex = "1.10"
[dev-dependencies]
tempfile = "3"