Cargo.lock 7.7 KB
Newer Older
B
Ben S 已提交
1 2
[root]
name = "exa"
B
Ben S 已提交
3
version = "0.2.0"
B
Ben S 已提交
4
dependencies = [
B
Benjamin Sago 已提交
5
 "ansi_term 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
M
Michael Faille 已提交
6
 "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
7
 "datetime 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
8
 "getopts 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
9
 "git2 0.2.9 (git+https://github.com/alexcrichton/git2-rs.git)",
10
 "locale 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
11
 "natord 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
12
 "num_cpus 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
13 14
 "number_prefix 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "pad 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
15
 "unicode-width 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
16
 "users 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
17 18 19 20
]

[[package]]
name = "ansi_term"
B
Benjamin Sago 已提交
21
version = "0.5.1"
22
source = "registry+https://github.com/rust-lang/crates.io-index"
B
Ben S 已提交
23

B
Ben S 已提交
24 25
[[package]]
name = "bitflags"
26
version = "0.1.1"
B
Ben S 已提交
27 28
source = "registry+https://github.com/rust-lang/crates.io-index"

29 30
[[package]]
name = "datetime"
B
Ben S 已提交
31
version = "0.1.7"
32
source = "registry+https://github.com/rust-lang/crates.io-index"
33
dependencies = [
34
 "locale 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
35
 "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
36
 "pad 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
37 38
 "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex_macros 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
39 40 41 42
]

[[package]]
name = "gcc"
B
Benjamin Sago 已提交
43
version = "0.3.4"
44 45
source = "registry+https://github.com/rust-lang/crates.io-index"

B
Benjamin Sago 已提交
46 47
[[package]]
name = "getopts"
48
version = "0.2.10"
B
Benjamin Sago 已提交
49
source = "registry+https://github.com/rust-lang/crates.io-index"
50
dependencies = [
B
Benjamin Sago 已提交
51
 "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
52
]
B
Benjamin Sago 已提交
53

B
Ben S 已提交
54 55
[[package]]
name = "git2"
B
Ben S 已提交
56
version = "0.2.9"
57
source = "git+https://github.com/alexcrichton/git2-rs.git#315a6f2e6f20babaa2f48416de9a14d15420cf1b"
B
Ben S 已提交
58
dependencies = [
59
 "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
60
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
61
 "libgit2-sys 0.2.12 (git+https://github.com/alexcrichton/git2-rs.git)",
B
Ben S 已提交
62
 "url 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
63 64
]

65 66
[[package]]
name = "libc"
B
Ben S 已提交
67
version = "0.1.6"
68 69
source = "registry+https://github.com/rust-lang/crates.io-index"

B
Ben S 已提交
70 71
[[package]]
name = "libgit2-sys"
72 73
version = "0.2.12"
source = "git+https://github.com/alexcrichton/git2-rs.git#315a6f2e6f20babaa2f48416de9a14d15420cf1b"
B
Ben S 已提交
74
dependencies = [
B
Ben S 已提交
75 76
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "libssh2-sys 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
77
 "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
78
 "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
79
 "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
80 81 82 83
]

[[package]]
name = "libressl-pnacl-sys"
84
version = "2.1.5"
B
Ben S 已提交
85 86
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
87
 "pnacl-build-helper 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
88 89 90 91
]

[[package]]
name = "libssh2-sys"
B
Ben S 已提交
92
version = "0.1.18"
B
Ben S 已提交
93 94
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
95
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
96
 "libz-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
97
 "openssl-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
98
 "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
99 100 101 102
]

[[package]]
name = "libz-sys"
B
Ben S 已提交
103
version = "0.1.3"
B
Ben S 已提交
104 105
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
106
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
107
 "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
108 109
]

110 111
[[package]]
name = "locale"
112
version = "0.1.8"
113
source = "registry+https://github.com/rust-lang/crates.io-index"
114 115
dependencies = [
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
116
 "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
117
]
118

119 120
[[package]]
name = "log"
B
Benjamin Sago 已提交
121
version = "0.3.1"
122
source = "registry+https://github.com/rust-lang/crates.io-index"
B
Benjamin Sago 已提交
123
dependencies = [
B
Ben S 已提交
124
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
125
]
126

B
Ben S 已提交
127 128 129 130 131
[[package]]
name = "matches"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

132 133
[[package]]
name = "natord"
B
Ben S 已提交
134
version = "1.0.8"
135
source = "registry+https://github.com/rust-lang/crates.io-index"
136

137 138
[[package]]
name = "num"
B
Ben S 已提交
139
version = "0.1.24"
140 141
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
142 143
 "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc-serialize 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
144 145
]

B
Benjamin Sago 已提交
146 147
[[package]]
name = "num_cpus"
B
Ben S 已提交
148
version = "0.2.3"
B
Benjamin Sago 已提交
149 150
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
151
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
152 153
]

154 155
[[package]]
name = "number_prefix"
156
version = "0.2.4"
157
source = "registry+https://github.com/rust-lang/crates.io-index"
158
dependencies = [
B
Ben S 已提交
159
 "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
160
]
161

B
Ben S 已提交
162 163
[[package]]
name = "openssl-sys"
164
version = "0.6.1"
B
Ben S 已提交
165 166
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Benjamin Sago 已提交
167
 "gcc 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
168
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
169
 "libressl-pnacl-sys 2.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
B
Benjamin Sago 已提交
170
 "pkg-config 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
171 172
]

173 174
[[package]]
name = "pad"
175
version = "0.1.4"
176
source = "registry+https://github.com/rust-lang/crates.io-index"
177 178 179
dependencies = [
 "unicode-width 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
180

B
Ben S 已提交
181 182
[[package]]
name = "pkg-config"
B
Benjamin Sago 已提交
183
version = "0.3.3"
184 185
source = "registry+https://github.com/rust-lang/crates.io-index"

B
Ben S 已提交
186 187
[[package]]
name = "pnacl-build-helper"
188
version = "1.4.0"
B
Ben S 已提交
189
source = "registry+https://github.com/rust-lang/crates.io-index"
190 191 192 193 194 195
dependencies = [
 "tempdir 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "rand"
B
Ben S 已提交
196
version = "0.3.8"
197 198 199 200
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
B
Ben S 已提交
201

B
Ben S 已提交
202 203
[[package]]
name = "regex"
B
Ben S 已提交
204
version = "0.1.30"
B
Ben S 已提交
205 206 207 208
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "regex_macros"
B
Ben S 已提交
209
version = "0.1.17"
B
Ben S 已提交
210 211
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
212
 "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
213 214
]

B
Ben S 已提交
215 216
[[package]]
name = "rustc-serialize"
B
Ben S 已提交
217
version = "0.3.13"
B
Ben S 已提交
218 219
source = "registry+https://github.com/rust-lang/crates.io-index"

220 221 222 223 224
[[package]]
name = "tempdir"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
B
Ben S 已提交
225
 "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
226 227 228 229 230 231 232
]

[[package]]
name = "unicode-width"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

B
Ben S 已提交
233 234
[[package]]
name = "url"
B
Ben S 已提交
235
version = "0.2.31"
B
Ben S 已提交
236 237 238
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
239
 "rustc-serialize 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
B
Ben S 已提交
240 241
]

B
Ben S 已提交
242 243
[[package]]
name = "users"
B
Benjamin Sago 已提交
244
version = "0.3.2"
245
source = "registry+https://github.com/rust-lang/crates.io-index"
246
dependencies = [
B
Ben S 已提交
247
 "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
248
]
B
Ben S 已提交
249