2023-07-27 16:25:26 +03:00
|
|
|
[package]
|
|
|
|
name = "shell"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-12-11 03:05:17 +02:00
|
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
2023-07-27 16:25:26 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-14 14:55:13 +02:00
|
|
|
clap = { version = "4.3.19", features = ["std", "derive"], default-features = false }
|
2024-01-22 14:46:02 +02:00
|
|
|
thiserror = "1.0.50"
|
2023-11-14 14:55:13 +02:00
|
|
|
nom = "7.1.3"
|
2024-03-03 03:22:49 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "yggdrasil")'.dependencies]
|
2024-03-12 18:17:47 +02:00
|
|
|
yggdrasil-rt = { path = "../../lib/runtime" }
|
|
|
|
yggdrasil-abi = { path = "../../lib/abi" }
|
2024-03-03 03:22:49 +02:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "*"
|