[package] name = "sysutils" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.3.19", features = ["std", "derive"], default-features = false } # TODO own impl humansize = { version = "2.1.3", features = ["impl_style"] } yggdrasil-rt = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-rt.git" } [lib] path = "src/lib.rs" # /sbin [[bin]] name = "mount" path = "src/mount.rs" [[bin]] name = "login" path = "src/login.rs" # /bin [[bin]] name = "ls" path = "src/ls.rs" [[bin]] name = "hexd" path = "src/hexd.rs"