part 13 draft: sorting, external dependencies
[rust-101.git] / Cargo.lock
1 [root]
2 name = "rust-101"
3 version = "0.1.0"
4 dependencies = [
5  "docopt 0.6.67 (registry+https://github.com/rust-lang/crates.io-index)",
6 ]
7
8 [[package]]
9 name = "aho-corasick"
10 version = "0.2.2"
11 source = "registry+https://github.com/rust-lang/crates.io-index"
12 dependencies = [
13  "memchr 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
14 ]
15
16 [[package]]
17 name = "docopt"
18 version = "0.6.67"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 dependencies = [
21  "regex 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
22  "rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
23  "strsim 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
24 ]
25
26 [[package]]
27 name = "libc"
28 version = "0.1.9"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30
31 [[package]]
32 name = "memchr"
33 version = "0.1.3"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 dependencies = [
36  "libc 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
37 ]
38
39 [[package]]
40 name = "regex"
41 version = "0.1.40"
42 source = "registry+https://github.com/rust-lang/crates.io-index"
43 dependencies = [
44  "aho-corasick 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
45  "memchr 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
46  "regex-syntax 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
47 ]
48
49 [[package]]
50 name = "regex-syntax"
51 version = "0.2.0"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53
54 [[package]]
55 name = "rustc-serialize"
56 version = "0.3.15"
57 source = "registry+https://github.com/rust-lang/crates.io-index"
58
59 [[package]]
60 name = "strsim"
61 version = "0.3.0"
62 source = "registry+https://github.com/rust-lang/crates.io-index"
63