587
|
1 [root] |
|
2 name = "wort-templog" |
|
3 version = "0.1.0" |
|
4 dependencies = [ |
|
5 "RobotS 0.3.0", |
|
6 ] |
|
7 |
|
8 [[package]] |
|
9 name = "RobotS" |
|
10 version = "0.3.0" |
|
11 dependencies = [ |
|
12 "env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", |
|
13 "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
|
14 "rand 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", |
|
15 ] |
|
16 |
|
17 [[package]] |
|
18 name = "aho-corasick" |
|
19 version = "0.5.3" |
|
20 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
21 dependencies = [ |
|
22 "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", |
|
23 ] |
|
24 |
|
25 [[package]] |
|
26 name = "env_logger" |
|
27 version = "0.3.5" |
|
28 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
29 dependencies = [ |
|
30 "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
|
31 "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)", |
|
32 ] |
|
33 |
|
34 [[package]] |
|
35 name = "kernel32-sys" |
|
36 version = "0.2.2" |
|
37 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
38 dependencies = [ |
|
39 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", |
|
40 "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
|
41 ] |
|
42 |
|
43 [[package]] |
|
44 name = "libc" |
|
45 version = "0.2.18" |
|
46 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
47 |
|
48 [[package]] |
|
49 name = "log" |
|
50 version = "0.3.6" |
|
51 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
52 |
|
53 [[package]] |
|
54 name = "memchr" |
|
55 version = "0.1.11" |
|
56 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
57 dependencies = [ |
|
58 "libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", |
|
59 ] |
|
60 |
|
61 [[package]] |
|
62 name = "rand" |
|
63 version = "0.3.15" |
|
64 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
65 dependencies = [ |
|
66 "libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", |
|
67 ] |
|
68 |
|
69 [[package]] |
|
70 name = "regex" |
|
71 version = "0.1.80" |
|
72 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
73 dependencies = [ |
|
74 "aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", |
|
75 "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", |
|
76 "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", |
|
77 "thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", |
|
78 "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
|
79 ] |
|
80 |
|
81 [[package]] |
|
82 name = "regex-syntax" |
|
83 version = "0.3.9" |
|
84 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
85 |
|
86 [[package]] |
|
87 name = "thread-id" |
|
88 version = "2.0.0" |
|
89 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
90 dependencies = [ |
|
91 "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
|
92 "libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", |
|
93 ] |
|
94 |
|
95 [[package]] |
|
96 name = "thread_local" |
|
97 version = "0.2.7" |
|
98 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
99 dependencies = [ |
|
100 "thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
|
101 ] |
|
102 |
|
103 [[package]] |
|
104 name = "utf8-ranges" |
|
105 version = "0.1.3" |
|
106 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
107 |
|
108 [[package]] |
|
109 name = "winapi" |
|
110 version = "0.2.8" |
|
111 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
112 |
|
113 [[package]] |
|
114 name = "winapi-build" |
|
115 version = "0.1.1" |
|
116 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
117 |
|
118 [metadata] |
|
119 "checksum aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66" |
|
120 "checksum env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f" |
|
121 "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" |
|
122 "checksum libc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "a51822fc847e7a8101514d1d44e354ba2ffa7d4c194dcab48870740e327cac70" |
|
123 "checksum log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ab83497bf8bf4ed2a74259c1c802351fcd67a65baa86394b6ba73c36f4838054" |
|
124 "checksum memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20" |
|
125 "checksum rand 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "022e0636ec2519ddae48154b028864bdce4eaf7d35226ab8e65c611be97b189d" |
|
126 "checksum regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f" |
|
127 "checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" |
|
128 "checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03" |
|
129 "checksum thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5" |
|
130 "checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" |
|
131 "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" |
|
132 "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" |