2025-09-09 01:41:40 +00:00
|
|
|
[package]
|
|
|
|
|
name = "logo-ascii-art"
|
|
|
|
|
version = "0.1.0"
|
2025-12-25 07:17:37 +00:00
|
|
|
edition.workspace = true
|
2025-09-09 01:41:40 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
# This crate is only needed by `main.rs`, not `lib.rs`
|
|
|
|
|
owo-colors = { version = "4.2.2", optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
color = ["owo-colors"]
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "logo-ascii-art"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
required-features = ["color"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|