20 lines
529 B
TOML
20 lines
529 B
TOML
[package]
|
|
name = "shell"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.3.19", features = ["std", "derive"], default-features = false }
|
|
thiserror = "1.0.50"
|
|
nom = "7.1.3"
|
|
|
|
[target.'cfg(target_os = "yggdrasil")'.dependencies]
|
|
yggdrasil-rt = { path = "../../lib/runtime" }
|
|
yggdrasil-abi = { path = "../../lib/abi" }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "*"
|