34 lines
905 B
TOML
34 lines
905 B
TOML
[package]
|
|
name = "ublue-rs"
|
|
version = "0.3.4"
|
|
edition = "2021"
|
|
description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project"
|
|
repository = "https://gitlab.com/wunker-bunker/ublue-cli"
|
|
license = "Apache-2.0"
|
|
categories = ["command-line-utilities"]
|
|
exclude = [".gitlab-ci.yml", ".helix/", ".git/", ".gitignore"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.31"
|
|
clap = { version = "4.4.4", features = ["derive"] }
|
|
clap-verbosity-flag = "2.1.1"
|
|
derive_builder = "0.12.0"
|
|
env_logger = "0.10.1"
|
|
log = "0.4.20"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
serde_yaml = "0.9.25"
|
|
tera = "1.19.1"
|
|
|
|
[features]
|
|
default = ["build"]
|
|
nightly = ["init", "build"]
|
|
init = []
|
|
build = []
|
|
|
|
[dev-dependencies]
|
|
rusty-hook = "0.11.2"
|