-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) Β· 1.07 KB
/
Cargo.toml
File metadata and controls
38 lines (36 loc) Β· 1.07 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
[package]
name = "stackbuilder"
version = "0.1.0"
edition = "2021"
description = "A powerful CLI tool for building Docker Compose files from modular components with multi-environment support and extension system"
authors = ["Zyrakq <serg.shehov@tutanota.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/zyrakq/stackbuilder"
homepage = "https://github.com/zyrakq/stackbuilder"
documentation = "https://github.com/zyrakq/stackbuilder/blob/main/README.md"
readme = "README.md"
keywords = ["docker", "compose", "devops", "cli", "modular"]
categories = ["command-line-utilities", "development-tools", "containerization"]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
"docs/**/*",
]
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml_ng = "0.10.0"
serde_json = "1.0"
toml = "0.9.5"
anyhow = "1.0"
yaml-rust2 = "0.10.3"
thiserror = "2.0.16"
glob = "0.3"
regex = "1.0"
[dev-dependencies]
tempfile = "3.8"
assert_fs = "1.0"
predicates = "3.0"