refactor: better user dir structure

This commit is contained in:
Mark Poliakov 2021-11-28 11:50:59 +02:00
parent a7a0c8bf2c
commit cd71ee25ab
5 changed files with 4 additions and 4 deletions

View File

@ -11,19 +11,19 @@ path = "src/init/main.rs"
[[bin]] [[bin]]
name = "shell" name = "shell"
path = "src/shell/main.rs" path = "src/bin/shell.rs"
[[bin]] [[bin]]
name = "fuzzy" name = "fuzzy"
path = "src/fuzzy/main.rs" path = "src/bin/fuzzy.rs"
[[bin]] [[bin]]
name = "ls" name = "ls"
path = "src/ls/main.rs" path = "src/bin/ls.rs"
[[bin]] [[bin]]
name = "login" name = "login"
path = "src/login/main.rs" path = "src/sbin/login.rs"
[dependencies] [dependencies]
libusr = { path = "../libusr" } libusr = { path = "../libusr" }