diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -3,6 +3,12 @@ | |||
3 | version = 3 | 3 | version = 3 |
4 | 4 | ||
5 | [[package]] | 5 | [[package]] |
6 | name = "adler32" | ||
7 | version = "1.2.0" | ||
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
9 | checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" | ||
10 | |||
11 | [[package]] | ||
6 | name = "aho-corasick" | 12 | name = "aho-corasick" |
7 | version = "0.7.15" | 13 | version = "0.7.15" |
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 14 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -59,6 +65,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
59 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | 65 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
60 | 66 | ||
61 | [[package]] | 67 | [[package]] |
68 | name = "crc32fast" | ||
69 | version = "1.2.1" | ||
70 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
71 | checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" | ||
72 | dependencies = [ | ||
73 | "cfg-if 1.0.0", | ||
74 | ] | ||
75 | |||
76 | [[package]] | ||
77 | name = "deflate" | ||
78 | version = "0.8.6" | ||
79 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
80 | checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" | ||
81 | dependencies = [ | ||
82 | "adler32", | ||
83 | "byteorder", | ||
84 | ] | ||
85 | |||
86 | [[package]] | ||
62 | name = "env_logger" | 87 | name = "env_logger" |
63 | version = "0.8.3" | 88 | version = "0.8.3" |
64 | source = "registry+https://github.com/rust-lang/crates.io-index" | 89 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -120,11 +145,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
120 | checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" | 145 | checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" |
121 | 146 | ||
122 | [[package]] | 147 | [[package]] |
148 | name = "miniz_oxide" | ||
149 | version = "0.3.7" | ||
150 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
151 | checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" | ||
152 | dependencies = [ | ||
153 | "adler32", | ||
154 | ] | ||
155 | |||
156 | [[package]] | ||
123 | name = "obi" | 157 | name = "obi" |
124 | version = "0.1.0" | 158 | version = "0.1.0" |
125 | dependencies = [ | 159 | dependencies = [ |
126 | "bitvec", | 160 | "bitvec", |
127 | "byteorder", | 161 | "byteorder", |
162 | "png", | ||
128 | ] | 163 | ] |
129 | 164 | ||
130 | [[package]] | 165 | [[package]] |
@@ -134,6 +169,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
134 | checksum = "d70072c20945e1ab871c472a285fc772aefd4f5407723c206242f2c6f94595d6" | 169 | checksum = "d70072c20945e1ab871c472a285fc772aefd4f5407723c206242f2c6f94595d6" |
135 | 170 | ||
136 | [[package]] | 171 | [[package]] |
172 | name = "png" | ||
173 | version = "0.16.8" | ||
174 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
175 | checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" | ||
176 | dependencies = [ | ||
177 | "bitflags", | ||
178 | "crc32fast", | ||
179 | "deflate", | ||
180 | "miniz_oxide", | ||
181 | ] | ||
182 | |||
183 | [[package]] | ||
137 | name = "radium" | 184 | name = "radium" |
138 | version = "0.6.2" | 185 | version = "0.6.2" |
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | 186 | source = "registry+https://github.com/rust-lang/crates.io-index" |