-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (59 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
72 lines (59 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
authors = ["Polymetric <[email protected]>",
"Łukasz Jan Niemier <[email protected]>",
"Jeremy Soller <[email protected]>",
"Ticki <[email protected]>",
"Michael Murphy <[email protected]>"]
name = "coreutils"
version = "0.1.0"
edition = "2021"
autobins = false
[dependencies]
anyhow = "1"
arg_parser = { git = "https://gitlab.redox-os.org/redox-os/arg-parser.git" }
extra = { git = "https://gitlab.redox-os.org/redox-os/libextra.git" }
termion = "4"
# https://github.com/alexcrichton/filetime/pull/104
filetime = { git = "https://github.com/jackpot51/filetime.git" }
redox_users = "0.4.5"
walkdir = "2.2.7"
time = "0.1.42"
base64 = "0.10.1"
num = "0.2.0"
failure = "0.1.5"
failure_derive = "0.1.5"
libredox = "0.1"
[dev-dependencies]
proptest = "0.9.2"
[lib]
path = "src/lib.rs"
[[bin]]
name = "chown"
path = "src/bin/chown.rs"
[[bin]]
name = "clear"
path = "src/bin/clear.rs"
[[bin]]
name = "df"
path = "src/bin/df.rs"
[[bin]]
name = "free"
path = "src/bin/free.rs"
[[bin]]
name = "ps"
path = "src/bin/ps.rs"
[[bin]]
name = "reset"
path = "src/bin/reset.rs"
[[bin]]
name = "shutdown"
path = "src/bin/shutdown.rs"
[[bin]]
name = "time"
path = "src/bin/time.rs"
[[bin]]
name = "uptime"
path = "src/bin/uptime.rs"
[[bin]]
name = "which"
path = "src/bin/which.rs"