osdev5/user/Cargo.toml

19 lines
365 B
TOML

[package]
name = "user"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "init"
path = "src/init/main.rs"
[[bin]]
name = "shell"
path = "src/shell/main.rs"
[dependencies]
libusr = { path = "../libusr" }
lazy_static = { version = "*", features = ["spin_no_std"] }