update the Cargo.lock files
[rust-101.git] / solutions / Cargo.lock
1 [root]
2 name = "solutions"
3 version = "0.1.0"
4 dependencies = [
5  "docopt 0.6.78 (registry+https://github.com/rust-lang/crates.io-index)",
6 ]
7
8 [[package]]
9 name = "aho-corasick"
10 version = "0.5.1"
11 source = "registry+https://github.com/rust-lang/crates.io-index"
12 dependencies = [
13  "memchr 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
14 ]
15
16 [[package]]
17 name = "docopt"
18 version = "0.6.78"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 dependencies = [
21  "regex 0.1.55 (registry+https://github.com/rust-lang/crates.io-index)",
22  "rustc-serialize 0.3.18 (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.2.7"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30
31 [[package]]
32 name = "memchr"
33 version = "0.1.10"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 dependencies = [
36  "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
37 ]
38
39 [[package]]
40 name = "regex"
41 version = "0.1.55"
42 source = "registry+https://github.com/rust-lang/crates.io-index"
43 dependencies = [
44  "aho-corasick 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
45  "memchr 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
46  "regex-syntax 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
47  "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
48 ]
49
50 [[package]]
51 name = "regex-syntax"
52 version = "0.2.5"
53 source = "registry+https://github.com/rust-lang/crates.io-index"
54
55 [[package]]
56 name = "rustc-serialize"
57 version = "0.3.18"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59
60 [[package]]
61 name = "strsim"
62 version = "0.3.0"
63 source = "registry+https://github.com/rust-lang/crates.io-index"
64
65 [[package]]
66 name = "utf8-ranges"
67 version = "0.1.3"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69