| 1 |
[package] |
| 2 |
name = "skelgen" |
| 3 |
version = "0.1.0" |
| 4 |
description = "Renders Alloy's desktop skeleton from a makeover theme. Build-time only; not shipped in the image." |
| 5 |
edition.workspace = true |
| 6 |
rust-version.workspace = true |
| 7 |
license.workspace = true |
| 8 |
repository.workspace = true |
| 9 |
authors.workspace = true |
| 10 |
|
| 11 |
[[bin]] |
| 12 |
name = "alloy-skelgen" |
| 13 |
path = "src/main.rs" |
| 14 |
|
| 15 |
[dependencies] |
| 16 |
alloy_tui = "15" |
| 17 |
anyhow = "1" |
| 18 |
clap = { version = "4", features = ["derive"] } |
| 19 |
makeover.workspace = true |
| 20 |
|
| 21 |
[lints] |
| 22 |
workspace = true |
| 23 |
|