19 lines
374 B
TOML
19 lines
374 B
TOML
[package]
|
|
name = "shell"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
[dependencies]
|
|
clap.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
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 = "*"
|