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
|
|
|
|
|
|
|
[dependencies]
|
2025-01-03 19:06:16 +02:00
|
|
|
cross.workspace = true
|
|
|
|
|
2024-10-30 21:13:41 +02:00
|
|
|
clap.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
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 = "*"
|
2025-01-03 15:28:05 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|