particle-os-cli/Cargo.toml
2023-11-05 10:40:10 -05:00

28 lines
779 B
TOML

[package]
name = "ublue-rs"
version = "0.2.2"
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"
clap = { version = "4.4.4", features = ["derive"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
tera = "1.19.1"
[features]
default = ["modules"]
nightly = ["init", "build"]
init = []
build = []
modules = []
legacy = []