-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
103 lines (81 loc) · 1.92 KB
/
Cargo.toml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "extrautils"
version = "0.1.0"
authors = ["Ticki <[email protected]>"]
[[bin]]
name = "calc"
path = "src/bin/calc.rs"
[[bin]]
name = "cur"
path = "src/bin/cur.rs"
[[bin]]
name = "dmesg"
path = "src/bin/dmesg.rs"
[[bin]]
name = "grep"
path = "src/bin/grep.rs"
[[bin]]
name = "gunzip"
path = "src/bin/gunzip.rs"
[[bin]]
name = "gzip"
path = "src/bin/gzip.rs"
[[bin]]
name = "info"
path = "src/bin/info.rs"
[[bin]]
name = "keymap"
path = "src/bin/keymap.rs"
[[bin]]
name = "less"
path = "src/bin/less.rs"
[[bin]]
name = "man"
path = "src/bin/man.rs"
[[bin]]
name = "mdless"
path = "src/bin/mdless.rs"
[[bin]]
name = "mtxt"
path = "src/bin/mtxt.rs"
[[bin]]
name = "rem"
path = "src/bin/rem.rs"
[[bin]]
name = "resize"
path = "src/bin/resize.rs"
[[bin]]
name = "screenfetch"
path = "src/bin/screenfetch.rs"
[[bin]]
name = "tar"
path = "src/bin/tar.rs"
[[bin]]
name = "unzip"
path = "src/bin/unzip.rs"
[[bin]]
name = "watch"
path = "src/bin/watch.rs"
[dependencies]
arg_parser = { git = "https://gitlab.redox-os.org/redox-os/arg-parser.git" }
extra = { git = "https://gitlab.redox-os.org/redox-os/libextra.git" }
libflate = "0.1.4"
os-release = "0.1.0"
pager = { git = "https://gitlab.redox-os.org/redox-os/libpager.git" }
libredox = "0.1"
tar = { version = "0.4.27", default-features = false }
filetime = { git = "https://github.com/jackpot51/filetime.git" }
termion = "4"
rust-lzma = {version = "0.6", features = ["static"]}
tree_magic = { git = "https://github.com/aahancoc/tree_magic.git", rev = "56fd014b4e4aefea7d1e37d4216595624511cefc" }
bzip2 = "0.3"
zip = "0.3"
[dev-dependencies]
assert_cmd = "1"
predicates = "1"
tempfile = "3"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
raw-cpuid = "10.2.0"
[patch.crates-io]
filetime = { git = "https://github.com/jackpot51/filetime.git" }
cc-11 = { git = "https://github.com/tea/cc-rs", branch="riscv-abi-arch-fix", package = "cc" }