22 lines
397 B
TOML
22 lines
397 B
TOML
[package]
|
|
name = "how"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = []
|
|
clone-with-caveats = []
|
|
arc-backtrace = []
|
|
termination = ["dep:ansee"]
|
|
|
|
[dependencies]
|
|
ansee = { git = "https://git.pfaff.dev/michael/ansee", optional = true }
|
|
typeid-cast = "0.1"
|
|
|
|
[dev-dependencies]
|
|
how = { path = ".", features = ["termination"] }
|
|
|
|
[[example]]
|
|
name = "output"
|
|
required-features = ["termination"]
|