update solutions dependencies
[rust-101.git] / solutions / Cargo.lock
1 [root]
2 name = "solutions"
3 version = "0.1.0"
4 dependencies = [
5  "docopt 0.6.74 (registry+https://github.com/rust-lang/crates.io-index)",
6 ]
7
8 [[package]]
9 name = "aho-corasick"
10 version = "0.3.4"
11 source = "registry+https://github.com/rust-lang/crates.io-index"
12 dependencies = [
13  "memchr 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
14 ]
15
16 [[package]]
17 name = "docopt"
18 version = "0.6.74"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 dependencies = [
21  "regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
22  "rustc-serialize 0.3.16 (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.12"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30
31 [[package]]
32 name = "memchr"
33 version = "0.1.6"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 dependencies = [
36  "libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
37 ]
38
39 [[package]]
40 name = "regex"
41 version = "0.1.41"
42 source = "registry+https://github.com/rust-lang/crates.io-index"
43 dependencies = [
44  "aho-corasick 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
45  "memchr 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
46  "regex-syntax 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
47 ]
48
49 [[package]]
50 name = "regex-syntax"
51 version = "0.2.2"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53
54 [[package]]
55 name = "rustc-serialize"
56 version = "0.3.16"
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