[package]
edition = "2024"
name = "sl-rust"
version = "1.0.0"
authors = [
"oligamiq <nziq53@gmail.com>",
"Toyoda Masashi <mtoyoda@acm.org>",
"Copilot <223556219+Copilot@users.noreply.github.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SL - An ASCII art train animation"
readme = "README.md"
keywords = [
"terminal",
"animation",
"train",
"sl",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/oligamiq/sl-rust"
[features]
debug = []
default = []
[lib]
name = "sl"
path = "src/lib.rs"
[[bin]]
name = "sl"
path = "src/main.rs"
[[bin]]
name = "smoke_debug"
path = "src/bin/smoke_debug.rs"
[[bin]]
name = "smoke_position_test"
path = "src/bin/smoke_position_test.rs"
[[bin]]
name = "test_frame_layout"
path = "src/bin/test_frame_layout.rs"
[[bin]]
name = "test_smoke_simple"
path = "src/bin/test_smoke_simple.rs"
[[bin]]
name = "visual_test"
path = "src/bin/visual_test.rs"
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[target.'cfg(not(target_os = "wasi"))'.dependencies.crossterm]
version = "0.27"
[profile.release]
opt-level = 3
lto = true