27 lines
476 B
TOML
27 lines
476 B
TOML
[package]
|
|
name = "libterm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
|
|
tui = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.150"
|
|
|
|
[target.'cfg(target_os = "yggdrasil")'.dependencies]
|
|
yggdrasil-rt.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tui.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lints]
|
|
workspace = true
|