[package]
edition = "2024"
name = "tyt-material"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tools for working with materials."
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/tyleo/tyt"
resolver = "2"
[features]
bin = [
"impl",
"dep:clap_complete",
]
default = ["impl"]
impl = ["dep:tyt-injection"]
[lib]
name = "tyt_material"
path = "src/lib.rs"
[[bin]]
name = "material"
path = "src/main.rs"
required-features = ["bin"]
[dependencies.clap]
version = "4.5.58"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
optional = true
[dependencies.tyt-common]
version = "0.1.7"
[dependencies.tyt-injection]
version = "0.2.0"
optional = true