osdev5/user/Cargo.toml

19 lines
365 B
TOML
Raw Normal View History

2021-10-18 19:15:42 +03:00
[package]
2021-11-05 15:24:10 +02:00
name = "user"
2021-10-18 19:15:42 +03:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-11-05 15:24:10 +02:00
[[bin]]
name = "init"
path = "src/init/main.rs"
[[bin]]
name = "shell"
path = "src/shell/main.rs"
2021-10-18 19:15:42 +03:00
[dependencies]
2021-10-21 12:16:24 +03:00
libusr = { path = "../libusr" }
2021-11-17 13:05:51 +02:00
lazy_static = { version = "*", features = ["spin_no_std"] }