wasmer 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c4151bdc88e7a63c42854fa282814c132162f2e1bd26888943ea24169ab9af4
4
- data.tar.gz: 8dd6e8bff83326bb782bb829b773f41eda4e8c78177eb6f3d3d1e4087c684f4f
3
+ metadata.gz: 6d8aa767f5a42c4be2df3e5d01b65ca28a6f2da8a7c15dccde66556864662974
4
+ data.tar.gz: 65ce7e608c9fa52a1e087a8138de8755bf87681984fced89e50e1591a82dedc9
5
5
  SHA512:
6
- metadata.gz: c2930f032201397d34a916ae3b7e246950f2b253815f1755e4189dcf7a362631d7a3fc670136690ea0e3a0ddcdf3fa45e5bceffb9fb0ce93981d4c5a59dbf042
7
- data.tar.gz: 42a09a7eade59b671d6523d51a3806d10371b8dea6293338d2ba791bc2e88c0ba05f638dabfc159b3c30794c305eba3290925419f49dd8992756f94e1e3090ce
6
+ metadata.gz: 65778dd55afab7c03ac303d50c3ed910e5923e27e248db3dc845d268d5efa04a9cfbf90e2ecb0ac354fb90f82e9a0c1ff62203e525e399e8fba31c336f678385
7
+ data.tar.gz: f0f3925f57c221789093f75432e0e7d3cbb8cc20f7a949545fa416eec666aced01718f25b40d0271fd4ab737394b1f75b7ba381dddbc18de9505c17123d4257d
@@ -0,0 +1,100 @@
1
+ name: Build and Test
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ # The `test` job.
7
+ test:
8
+ name: Test
9
+
10
+ strategy:
11
+ matrix:
12
+ # The job runs on 2 different OS.
13
+ os: [ubuntu-latest] # , macos-latest, removed temporarily
14
+ # As soon as one job fails in the matrix, all the other
15
+ # in-progress jobs are canceled.
16
+ fail-fast: true
17
+
18
+ runs-on: ${{ matrix.os }}
19
+
20
+ steps:
21
+ - name: Check out code
22
+ uses: actions/checkout@v2
23
+
24
+ - name: Set up Rust
25
+ shell: bash
26
+ run: |
27
+ curl https://sh.rustup.rs -sSf | sh -s -- -y
28
+
29
+ - name: Cache Cargo registry
30
+ uses: actions/cache@v1
31
+ with:
32
+ path: ~/.cargo/registry
33
+ key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
34
+
35
+ - name: Cache Cargo bin
36
+ uses: actions/cache@v1
37
+ with:
38
+ path: ~/.cargo/bin
39
+ key: ${{ runner.os }}-cargo-bin-${{ hashFiles('**/Cargo.lock') }}
40
+
41
+ - name: Cache Cargo build
42
+ uses: actions/cache@v1
43
+ with:
44
+ path: target
45
+ key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
46
+
47
+ - name: Cache Ruby versions
48
+ uses: actions/cache@v1
49
+ with:
50
+ path: ~/.rbenv/
51
+ key: ${{ runner.os }}-rbenv-versions
52
+
53
+ - name: Set up `rbenv` (with `rbenv-installer`)
54
+ if: matrix.os == 'ubuntu-latest'
55
+ shell: bash
56
+ run: |
57
+ export PATH="$HOME/.rbenv/bin:$PATH"
58
+ export PATH="$HOME/.rbenv/shims:$PATH"
59
+ sudo apt-get install -y libreadline-dev
60
+ test -d $HOME/.rbenv/bin || curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash
61
+ sudo apt-get install rubygems
62
+
63
+ - name: Set up `rbenv` (with `brew`)
64
+ if: matrix.os == 'macos-latest'
65
+ shell: bash
66
+ run: |
67
+ export PATH="$HOME/.rbenv/bin:$PATH"
68
+ export PATH="$HOME/.rbenv/shims:$PATH"
69
+ test -d $HOME/.rbenv/bin || brew install rbenv
70
+
71
+ - name: Set up Ruby
72
+ shell: bash
73
+ run: |
74
+ export PATH="$HOME/.rbenv/bin:$PATH"
75
+ export PATH="$HOME/.rbenv/shims:$PATH"
76
+ test -d $HOME/.rbenv/versions/2.6.5/ || rbenv install 2.6.5
77
+
78
+ - name: Set up just
79
+ shell: bash
80
+ run: |
81
+ export PATH="$HOME/.cargo/bin:$PATH"
82
+ test -f $HOME/.cargo/bin/just || cargo install just
83
+
84
+ - name: Compile the library
85
+ shell: bash
86
+ run: |
87
+ export PATH="$HOME/.cargo/bin:$PATH"
88
+ export PATH="$HOME/.rbenv/versions/2.6.5/bin:$PATH"
89
+ export GEM_HOME="$HOME/.gem"
90
+ gem install rake
91
+ gem install bundler
92
+ just build
93
+
94
+ - name: Run all the tests
95
+ shell: bash
96
+ run: |
97
+ export PATH="$HOME/.cargo/bin:$PATH"
98
+ export PATH="$HOME/.rbenv/versions/2.6.5/bin:$PATH"
99
+ export GEM_HOME="$HOME/.gem"
100
+ just test
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
+ /.bundle
1
2
  /Gemfile.lock
2
3
  /pkg
3
- /target
4
+ /target
5
+ /vendor
@@ -0,0 +1,147 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## Table of Contents
6
+
7
+ * [Unreleased](#unreleased)
8
+ * [0.4.0](#040---2020-02-03)
9
+ * [0.3.0](#030---2019-07-16)
10
+ * [0.2.0](#020---2019-05-01)
11
+
12
+ ## [Unreleased]
13
+
14
+ ## [0.4.0] - 2020-02-03
15
+
16
+ ### Added
17
+
18
+ * Support exported global variables
19
+ ([#32](https://github.com/wasmerio/ruby-ext-wasm/pull/32) by
20
+ [@Hywan])
21
+
22
+ ```ruby
23
+ instance = Wasmer::Instance.new bytes
24
+ x = instance.globals.x
25
+
26
+ assert x.mutable
27
+ assert_equal x.value, 7
28
+
29
+ x.value = 42
30
+
31
+ assert_equal x.value, 42
32
+ ```
33
+
34
+ * Support memory without an exported memory
35
+ ([#31](https://github.com/wasmerio/ruby-ext-wasm/pull/31) by
36
+ [@Hywan])
37
+
38
+ ### Changed
39
+
40
+ * Set `@memory` to `nil` if none is exported
41
+ ([#33](https://github.com/wasmerio/ruby-ext-wasm/pull/33) by
42
+ [@Hywan])
43
+ * Migrate CI from CircleCI to Github Actions
44
+ ([#28](https://github.com/wasmerio/ruby-ext-wasm/pull/28) by
45
+ [@Hywan])
46
+ * Format code
47
+ ([#26](https://github.com/wasmerio/ruby-ext-wasm/pull/26) by
48
+ [@Atul9])
49
+ * Update Rutie to 0.7.0 (Rust) and 0.0.4 (Ruby)
50
+ ([#23](https://github.com/wasmerio/ruby-ext-wasm/pull/23) by
51
+ [@Hywan])
52
+ * Update Wasmer from 0.6.0 to 0.14.0
53
+ ([#23](https://github.com/wasmerio/ruby-ext-wasm/pull/23),
54
+ [#24](https://github.com/wasmerio/ruby-ext-wasm/pull/24),
55
+ [#25](https://github.com/wasmerio/ruby-ext-wasm/pull/25),
56
+ [#35](https://github.com/wasmerio/ruby-ext-wasm/pull/35),
57
+ by [@Hywan])
58
+
59
+ ### Security
60
+
61
+ * Update `rake` and other dependencies
62
+ ([#36](https://github.com/wasmerio/ruby-ext-wasm/pull/36) by
63
+ [@Hywan])
64
+
65
+ ## [0.3.0] - 2019-07-16
66
+
67
+ ### Added
68
+
69
+ * Add the `Memory.grow` method
70
+ ([#19](https://github.com/wasmerio/ruby-ext-wasm/pull/19) by
71
+ [@Hywan])
72
+ * Typed arrays implement [the `Enumerable`
73
+ mixin](https://docs.ruby-lang.org/en/2.6.0/Enumerable.html)
74
+ ([#15](https://github.com/wasmerio/ruby-ext-wasm/pull/15) by
75
+ [@irxground])
76
+
77
+ ```ruby
78
+ memory = instance.memory.uint8_view pointer
79
+ string = ""
80
+
81
+ # Now we can write this more Ruby idiomatic loop:
82
+ memory.each do |char|
83
+ break if char == 0
84
+ string += char.chr
85
+ end
86
+ ```
87
+ * Implement `instance.exports.respond_to?` to test whether an exported
88
+ function exists
89
+ ([#9](https://github.com/wasmerio/ruby-ext-wasm/pull/9) by
90
+ [@irxground])
91
+
92
+ ```ruby
93
+ instance = Wasmer::Instance.new(self.bytes)
94
+
95
+ assert instance.exports.respond_to?(:foo)
96
+ ```
97
+ * Handle exported functions that return nothing, aka void functions
98
+ ([#8](https://github.com/wasmerio/ruby-ext-wasm/pull/8) by [@Hywan])
99
+ * Add the `greet` eaxmple
100
+ ([#12](https://github.com/wasmerio/ruby-ext-wasm/pull/12) by
101
+ [@Hywan])
102
+ * Set up Bors
103
+ ([#10](https://github.com/wasmerio/ruby-ext-wasm/pull/10) by
104
+ [@Hywan])
105
+
106
+ ### Changed
107
+
108
+ * Improve Ruby exception raising
109
+ ([#5](https://github.com/wasmerio/ruby-ext-wasm/pull/5) by
110
+ [@irxground])
111
+ * Update Wasmer to 0.5.5
112
+ ([#20](https://github.com/wasmerio/ruby-ext-wasm/pull/20) by
113
+ [@Hywan])
114
+ * Update Wasmer to 0.4.2
115
+ ([#11](https://github.com/wasmerio/ruby-ext-wasm/pull/11) by
116
+ [@Hywan])
117
+ * Update Wasmer to 0.4.1
118
+ ([#7](https://github.com/wasmerio/ruby-ext-wasm/pull/7) by [@Hywan])
119
+ * Update Rutie
120
+ ([#16](https://github.com/wasmerio/ruby-ext-wasm/pull/16) by
121
+ [@edvakf])
122
+ * Move all symbols inside the `Wasmer` module
123
+ ([#4](https://github.com/wasmerio/ruby-ext-wasm/pull/4) by
124
+ [@irxground])
125
+
126
+ ```ruby
127
+ # Read from the `Wasmer` module.
128
+ instance = Wasmer::Instance.new()
129
+ ```
130
+
131
+ * Improve documentation
132
+ ([#14](https://github.com/wasmerio/ruby-ext-wasm/pull/14) by
133
+ [@denniscollective])
134
+ * Use `assert_nil` instead of `assert_equal_nil` in tests
135
+ ([#13](https://github.com/wasmerio/ruby-ext-wasm/pull/13) by
136
+ [@Hywan])
137
+
138
+ ## [0.2.0] - 2019-05-01
139
+
140
+ [Unreleased]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.4.0...HEAD
141
+ [0.4.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.3.0...0.4.0
142
+ [0.3.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.2.0...0.3.0
143
+ [0.2.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.1.0...0.2.0
144
+ [@Hywan]: https://github.com/Hywan
145
+ [@irxground]: https://github.com/irxground
146
+ [@edvakf]: https://github.com/edvakf
147
+ [@Atul9]: https://github.com/Atul9
data/Cargo.lock CHANGED
@@ -1,289 +1,187 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- [[package]]
4
- name = "aho-corasick"
5
- version = "0.7.4"
6
- source = "registry+https://github.com/rust-lang/crates.io-index"
7
- dependencies = [
8
- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
9
- ]
10
-
11
- [[package]]
12
- name = "ansi_term"
13
- version = "0.11.0"
14
- source = "registry+https://github.com/rust-lang/crates.io-index"
15
- dependencies = [
16
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
17
- ]
18
-
19
- [[package]]
20
- name = "approx"
21
- version = "0.1.1"
22
- source = "registry+https://github.com/rust-lang/crates.io-index"
23
-
24
3
  [[package]]
25
4
  name = "arrayref"
26
- version = "0.3.5"
5
+ version = "0.3.6"
27
6
  source = "registry+https://github.com/rust-lang/crates.io-index"
28
7
 
29
8
  [[package]]
30
9
  name = "arrayvec"
31
- version = "0.4.11"
10
+ version = "0.5.1"
32
11
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- dependencies = [
34
- "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
35
- ]
36
-
37
- [[package]]
38
- name = "atty"
39
- version = "0.2.12"
40
- source = "registry+https://github.com/rust-lang/crates.io-index"
41
- dependencies = [
42
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
43
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
44
- ]
45
12
 
46
13
  [[package]]
47
14
  name = "autocfg"
48
- version = "0.1.4"
49
- source = "registry+https://github.com/rust-lang/crates.io-index"
50
-
51
- [[package]]
52
- name = "backtrace"
53
- version = "0.3.32"
54
- source = "registry+https://github.com/rust-lang/crates.io-index"
55
- dependencies = [
56
- "backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",
57
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
58
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
59
- "rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
60
- ]
61
-
62
- [[package]]
63
- name = "backtrace-sys"
64
- version = "0.1.30"
15
+ version = "1.0.0"
65
16
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
- dependencies = [
67
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
68
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
69
- ]
70
17
 
71
18
  [[package]]
72
19
  name = "bincode"
73
- version = "1.1.4"
74
- source = "registry+https://github.com/rust-lang/crates.io-index"
75
- dependencies = [
76
- "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
77
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
78
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
79
- ]
80
-
81
- [[package]]
82
- name = "bindgen"
83
- version = "0.46.0"
20
+ version = "1.2.1"
84
21
  source = "registry+https://github.com/rust-lang/crates.io-index"
85
22
  dependencies = [
86
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
87
- "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
88
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
89
- "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)",
90
- "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
91
- "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
92
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
93
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
94
- "log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
95
- "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
96
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
97
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
98
- "regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
99
- "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
23
+ "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
24
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
100
25
  ]
101
26
 
102
27
  [[package]]
103
28
  name = "bitflags"
104
- version = "1.1.0"
29
+ version = "1.2.1"
105
30
  source = "registry+https://github.com/rust-lang/crates.io-index"
106
31
 
107
32
  [[package]]
108
- name = "blake2b_simd"
109
- version = "0.4.1"
33
+ name = "blake3"
34
+ version = "0.1.5"
110
35
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
36
  dependencies = [
112
- "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
113
- "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
114
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
115
- "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
37
+ "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
38
+ "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
39
+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
40
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
41
+ "constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
42
+ "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43
+ "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
116
44
  ]
117
45
 
118
46
  [[package]]
119
47
  name = "byteorder"
120
- version = "1.3.2"
48
+ version = "1.3.4"
121
49
  source = "registry+https://github.com/rust-lang/crates.io-index"
122
50
 
123
51
  [[package]]
124
52
  name = "cc"
125
- version = "1.0.37"
126
- source = "registry+https://github.com/rust-lang/crates.io-index"
127
-
128
- [[package]]
129
- name = "cexpr"
130
- version = "0.3.5"
53
+ version = "1.0.50"
131
54
  source = "registry+https://github.com/rust-lang/crates.io-index"
132
- dependencies = [
133
- "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
134
- ]
135
55
 
136
56
  [[package]]
137
57
  name = "cfg-if"
138
- version = "0.1.9"
58
+ version = "0.1.10"
139
59
  source = "registry+https://github.com/rust-lang/crates.io-index"
140
60
 
141
- [[package]]
142
- name = "cgmath"
143
- version = "0.16.1"
144
- source = "registry+https://github.com/rust-lang/crates.io-index"
145
- dependencies = [
146
- "approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
147
- "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
148
- "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
149
- ]
150
-
151
- [[package]]
152
- name = "clang-sys"
153
- version = "0.26.4"
154
- source = "registry+https://github.com/rust-lang/crates.io-index"
155
- dependencies = [
156
- "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
157
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
158
- "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
159
- ]
160
-
161
- [[package]]
162
- name = "clap"
163
- version = "2.33.0"
164
- source = "registry+https://github.com/rust-lang/crates.io-index"
165
- dependencies = [
166
- "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
167
- "atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
168
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
169
- "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
170
- "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
171
- "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
172
- "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
173
- ]
174
-
175
61
  [[package]]
176
62
  name = "cloudabi"
177
63
  version = "0.0.3"
178
64
  source = "registry+https://github.com/rust-lang/crates.io-index"
179
65
  dependencies = [
180
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
66
+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
181
67
  ]
182
68
 
183
69
  [[package]]
184
70
  name = "cmake"
185
- version = "0.1.40"
71
+ version = "0.1.42"
186
72
  source = "registry+https://github.com/rust-lang/crates.io-index"
187
73
  dependencies = [
188
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
189
- ]
190
-
191
- [[package]]
192
- name = "colored"
193
- version = "1.8.0"
194
- source = "registry+https://github.com/rust-lang/crates.io-index"
195
- dependencies = [
196
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
197
- "winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
74
+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
198
75
  ]
199
76
 
200
77
  [[package]]
201
78
  name = "constant_time_eq"
202
- version = "0.1.3"
79
+ version = "0.1.5"
203
80
  source = "registry+https://github.com/rust-lang/crates.io-index"
204
81
 
205
82
  [[package]]
206
83
  name = "cranelift-bforest"
207
- version = "0.31.0"
84
+ version = "0.52.0"
208
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
209
86
  dependencies = [
210
- "cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
87
+ "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
211
88
  ]
212
89
 
213
90
  [[package]]
214
91
  name = "cranelift-codegen"
215
- version = "0.31.0"
92
+ version = "0.52.0"
216
93
  source = "registry+https://github.com/rust-lang/crates.io-index"
217
94
  dependencies = [
218
- "cranelift-bforest 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
219
- "cranelift-codegen-meta 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
220
- "cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
221
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
222
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
223
- "log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
224
- "target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
95
+ "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
96
+ "cranelift-bforest 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
97
+ "cranelift-codegen-meta 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
98
+ "cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
99
+ "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
100
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
101
+ "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
102
+ "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
103
+ "thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
225
104
  ]
226
105
 
227
106
  [[package]]
228
107
  name = "cranelift-codegen-meta"
229
- version = "0.31.0"
108
+ version = "0.52.0"
230
109
  source = "registry+https://github.com/rust-lang/crates.io-index"
231
110
  dependencies = [
232
- "cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
111
+ "cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
112
+ "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
233
113
  ]
234
114
 
115
+ [[package]]
116
+ name = "cranelift-codegen-shared"
117
+ version = "0.52.0"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+
235
120
  [[package]]
236
121
  name = "cranelift-entity"
237
- version = "0.31.0"
122
+ version = "0.52.0"
238
123
  source = "registry+https://github.com/rust-lang/crates.io-index"
239
124
 
240
125
  [[package]]
241
126
  name = "cranelift-native"
242
- version = "0.31.0"
127
+ version = "0.52.0"
243
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
129
  dependencies = [
245
- "cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
246
- "raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
247
- "target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
130
+ "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
131
+ "raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
132
+ "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
248
133
  ]
249
134
 
250
135
  [[package]]
251
136
  name = "crossbeam-deque"
252
- version = "0.6.3"
137
+ version = "0.7.3"
253
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
254
139
  dependencies = [
255
- "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
256
- "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
140
+ "crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
141
+ "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
142
+ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
257
143
  ]
258
144
 
259
145
  [[package]]
260
146
  name = "crossbeam-epoch"
261
- version = "0.7.1"
147
+ version = "0.8.2"
262
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
149
  dependencies = [
264
- "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
265
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
266
- "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
267
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
268
- "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
269
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
150
+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
151
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
152
+ "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
153
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
154
+ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
155
+ "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
156
+ "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
270
157
  ]
271
158
 
272
159
  [[package]]
273
160
  name = "crossbeam-queue"
274
- version = "0.1.2"
161
+ version = "0.2.1"
275
162
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
163
  dependencies = [
277
- "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
164
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
165
+ "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
278
166
  ]
279
167
 
280
168
  [[package]]
281
169
  name = "crossbeam-utils"
282
- version = "0.6.5"
170
+ version = "0.7.2"
283
171
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
172
  dependencies = [
285
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
286
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
173
+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
174
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
175
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "crypto-mac"
180
+ version = "0.7.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ dependencies = [
183
+ "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
184
+ "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
287
185
  ]
288
186
 
289
187
  [[package]]
@@ -296,29 +194,17 @@ dependencies = [
296
194
 
297
195
  [[package]]
298
196
  name = "either"
299
- version = "1.5.2"
197
+ version = "1.5.3"
300
198
  source = "registry+https://github.com/rust-lang/crates.io-index"
301
199
 
302
- [[package]]
303
- name = "env_logger"
304
- version = "0.6.2"
305
- source = "registry+https://github.com/rust-lang/crates.io-index"
306
- dependencies = [
307
- "atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
308
- "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
309
- "log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
310
- "regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
311
- "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
312
- ]
313
-
314
200
  [[package]]
315
201
  name = "errno"
316
202
  version = "0.2.4"
317
203
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
204
  dependencies = [
319
205
  "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
320
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
321
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
206
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
207
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
322
208
  ]
323
209
 
324
210
  [[package]]
@@ -327,34 +213,9 @@ version = "0.1.1"
327
213
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
214
  dependencies = [
329
215
  "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
330
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
216
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
331
217
  ]
332
218
 
333
- [[package]]
334
- name = "failure"
335
- version = "0.1.5"
336
- source = "registry+https://github.com/rust-lang/crates.io-index"
337
- dependencies = [
338
- "backtrace 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)",
339
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
340
- ]
341
-
342
- [[package]]
343
- name = "failure_derive"
344
- version = "0.1.5"
345
- source = "registry+https://github.com/rust-lang/crates.io-index"
346
- dependencies = [
347
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
348
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
349
- "syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
350
- "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
351
- ]
352
-
353
- [[package]]
354
- name = "fuchsia-cprng"
355
- version = "0.1.1"
356
- source = "registry+https://github.com/rust-lang/crates.io-index"
357
-
358
219
  [[package]]
359
220
  name = "gcc"
360
221
  version = "0.3.55"
@@ -365,95 +226,60 @@ name = "generic-array"
365
226
  version = "0.12.3"
366
227
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
228
  dependencies = [
368
- "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
229
+ "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
369
230
  ]
370
231
 
371
232
  [[package]]
372
- name = "glob"
373
- version = "0.2.11"
374
- source = "registry+https://github.com/rust-lang/crates.io-index"
375
-
376
- [[package]]
377
- name = "hashbrown"
233
+ name = "hermit-abi"
378
234
  version = "0.1.8"
379
235
  source = "registry+https://github.com/rust-lang/crates.io-index"
380
236
  dependencies = [
381
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
382
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
383
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
237
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
384
238
  ]
385
239
 
386
240
  [[package]]
387
241
  name = "hex"
388
- version = "0.3.2"
242
+ version = "0.4.2"
389
243
  source = "registry+https://github.com/rust-lang/crates.io-index"
390
244
 
391
- [[package]]
392
- name = "humantime"
393
- version = "1.2.0"
394
- source = "registry+https://github.com/rust-lang/crates.io-index"
395
- dependencies = [
396
- "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
397
- ]
398
-
399
245
  [[package]]
400
246
  name = "indexmap"
401
- version = "1.0.2"
402
- source = "registry+https://github.com/rust-lang/crates.io-index"
403
-
404
- [[package]]
405
- name = "itoa"
406
- version = "0.4.4"
407
- source = "registry+https://github.com/rust-lang/crates.io-index"
408
-
409
- [[package]]
410
- name = "kernel32-sys"
411
- version = "0.2.2"
247
+ version = "1.3.2"
412
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
413
249
  dependencies = [
414
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
415
- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
250
+ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
251
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
416
252
  ]
417
253
 
418
254
  [[package]]
419
255
  name = "lazy_static"
420
- version = "1.3.0"
256
+ version = "1.4.0"
421
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
422
258
 
423
259
  [[package]]
424
260
  name = "libc"
425
- version = "0.2.59"
261
+ version = "0.2.67"
426
262
  source = "registry+https://github.com/rust-lang/crates.io-index"
427
263
 
428
- [[package]]
429
- name = "libloading"
430
- version = "0.5.2"
431
- source = "registry+https://github.com/rust-lang/crates.io-index"
432
- dependencies = [
433
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
434
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
435
- ]
436
-
437
264
  [[package]]
438
265
  name = "lock_api"
439
- version = "0.1.5"
266
+ version = "0.3.3"
440
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
268
  dependencies = [
442
- "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
443
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
269
+ "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
444
270
  ]
445
271
 
446
272
  [[package]]
447
273
  name = "log"
448
- version = "0.4.7"
274
+ version = "0.4.8"
449
275
  source = "registry+https://github.com/rust-lang/crates.io-index"
450
276
  dependencies = [
451
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
277
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
452
278
  ]
453
279
 
454
280
  [[package]]
455
- name = "memchr"
456
- version = "2.2.1"
281
+ name = "maybe-uninit"
282
+ version = "2.0.0"
457
283
  source = "registry+https://github.com/rust-lang/crates.io-index"
458
284
 
459
285
  [[package]]
@@ -461,330 +287,132 @@ name = "memmap"
461
287
  version = "0.7.0"
462
288
  source = "registry+https://github.com/rust-lang/crates.io-index"
463
289
  dependencies = [
464
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
465
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
290
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
291
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
466
292
  ]
467
293
 
468
294
  [[package]]
469
295
  name = "memoffset"
470
- version = "0.2.1"
471
- source = "registry+https://github.com/rust-lang/crates.io-index"
472
-
473
- [[package]]
474
- name = "nix"
475
- version = "0.12.1"
296
+ version = "0.5.3"
476
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
298
  dependencies = [
478
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
479
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
480
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
481
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
482
- "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
299
+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
483
300
  ]
484
301
 
485
302
  [[package]]
486
303
  name = "nix"
487
- version = "0.13.1"
304
+ version = "0.15.0"
488
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
306
  dependencies = [
490
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
491
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
492
- "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
493
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
307
+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
308
+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
309
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
310
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
494
311
  "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
495
312
  ]
496
313
 
497
- [[package]]
498
- name = "nodrop"
499
- version = "0.1.13"
500
- source = "registry+https://github.com/rust-lang/crates.io-index"
501
-
502
- [[package]]
503
- name = "nom"
504
- version = "4.2.3"
505
- source = "registry+https://github.com/rust-lang/crates.io-index"
506
- dependencies = [
507
- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
508
- "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
509
- ]
510
-
511
- [[package]]
512
- name = "num-traits"
513
- version = "0.1.43"
514
- source = "registry+https://github.com/rust-lang/crates.io-index"
515
- dependencies = [
516
- "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
517
- ]
518
-
519
- [[package]]
520
- name = "num-traits"
521
- version = "0.2.8"
522
- source = "registry+https://github.com/rust-lang/crates.io-index"
523
- dependencies = [
524
- "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
525
- ]
526
-
527
314
  [[package]]
528
315
  name = "num_cpus"
529
- version = "1.10.1"
530
- source = "registry+https://github.com/rust-lang/crates.io-index"
531
- dependencies = [
532
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
533
- ]
534
-
535
- [[package]]
536
- name = "owning_ref"
537
- version = "0.4.0"
316
+ version = "1.12.0"
538
317
  source = "registry+https://github.com/rust-lang/crates.io-index"
539
318
  dependencies = [
540
- "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
319
+ "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
320
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
541
321
  ]
542
322
 
543
323
  [[package]]
544
324
  name = "page_size"
545
- version = "0.4.1"
325
+ version = "0.4.2"
546
326
  source = "registry+https://github.com/rust-lang/crates.io-index"
547
327
  dependencies = [
548
- "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
549
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
550
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
328
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
329
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
551
330
  ]
552
331
 
553
332
  [[package]]
554
333
  name = "parking_lot"
555
- version = "0.7.1"
334
+ version = "0.10.0"
556
335
  source = "registry+https://github.com/rust-lang/crates.io-index"
557
336
  dependencies = [
558
- "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
559
- "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
337
+ "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
338
+ "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
560
339
  ]
561
340
 
562
341
  [[package]]
563
342
  name = "parking_lot_core"
564
- version = "0.4.0"
343
+ version = "0.7.0"
565
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
566
345
  dependencies = [
567
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
568
- "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
569
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
570
- "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
571
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
346
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
347
+ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
348
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
349
+ "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
350
+ "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
351
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
572
352
  ]
573
353
 
574
- [[package]]
575
- name = "peeking_take_while"
576
- version = "0.1.2"
577
- source = "registry+https://github.com/rust-lang/crates.io-index"
578
-
579
354
  [[package]]
580
355
  name = "proc-macro2"
581
- version = "0.4.30"
356
+ version = "1.0.9"
582
357
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
358
  dependencies = [
584
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
359
+ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
585
360
  ]
586
361
 
587
- [[package]]
588
- name = "quick-error"
589
- version = "1.2.2"
590
- source = "registry+https://github.com/rust-lang/crates.io-index"
591
-
592
362
  [[package]]
593
363
  name = "quote"
594
- version = "0.6.13"
595
- source = "registry+https://github.com/rust-lang/crates.io-index"
596
- dependencies = [
597
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
598
- ]
599
-
600
- [[package]]
601
- name = "rand"
602
- version = "0.4.6"
603
- source = "registry+https://github.com/rust-lang/crates.io-index"
604
- dependencies = [
605
- "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
606
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
607
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
608
- "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
609
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
610
- ]
611
-
612
- [[package]]
613
- name = "rand"
614
- version = "0.6.5"
615
- source = "registry+https://github.com/rust-lang/crates.io-index"
616
- dependencies = [
617
- "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
618
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
619
- "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
620
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
621
- "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
622
- "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
623
- "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
624
- "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
625
- "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
626
- "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
627
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
628
- ]
629
-
630
- [[package]]
631
- name = "rand_chacha"
632
- version = "0.1.1"
633
- source = "registry+https://github.com/rust-lang/crates.io-index"
634
- dependencies = [
635
- "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
636
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
637
- ]
638
-
639
- [[package]]
640
- name = "rand_core"
641
- version = "0.3.1"
642
- source = "registry+https://github.com/rust-lang/crates.io-index"
643
- dependencies = [
644
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
645
- ]
646
-
647
- [[package]]
648
- name = "rand_core"
649
- version = "0.4.0"
650
- source = "registry+https://github.com/rust-lang/crates.io-index"
651
-
652
- [[package]]
653
- name = "rand_hc"
654
- version = "0.1.0"
655
- source = "registry+https://github.com/rust-lang/crates.io-index"
656
- dependencies = [
657
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
658
- ]
659
-
660
- [[package]]
661
- name = "rand_isaac"
662
- version = "0.1.1"
663
- source = "registry+https://github.com/rust-lang/crates.io-index"
664
- dependencies = [
665
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
666
- ]
667
-
668
- [[package]]
669
- name = "rand_jitter"
670
- version = "0.1.4"
671
- source = "registry+https://github.com/rust-lang/crates.io-index"
672
- dependencies = [
673
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
674
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
675
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
676
- ]
677
-
678
- [[package]]
679
- name = "rand_os"
680
- version = "0.1.3"
681
- source = "registry+https://github.com/rust-lang/crates.io-index"
682
- dependencies = [
683
- "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
684
- "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
685
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
686
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
687
- "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
688
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
689
- ]
690
-
691
- [[package]]
692
- name = "rand_pcg"
693
- version = "0.1.2"
694
- source = "registry+https://github.com/rust-lang/crates.io-index"
695
- dependencies = [
696
- "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
697
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
698
- ]
699
-
700
- [[package]]
701
- name = "rand_xorshift"
702
- version = "0.1.1"
364
+ version = "1.0.2"
703
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
704
366
  dependencies = [
705
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
367
+ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
706
368
  ]
707
369
 
708
370
  [[package]]
709
371
  name = "raw-cpuid"
710
- version = "6.1.0"
372
+ version = "7.0.3"
711
373
  source = "registry+https://github.com/rust-lang/crates.io-index"
712
374
  dependencies = [
713
- "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
714
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
375
+ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
376
+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
715
377
  "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
716
378
  ]
717
379
 
718
380
  [[package]]
719
381
  name = "rayon"
720
- version = "1.1.0"
382
+ version = "1.3.0"
721
383
  source = "registry+https://github.com/rust-lang/crates.io-index"
722
384
  dependencies = [
723
- "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
724
- "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
725
- "rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
385
+ "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
386
+ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
387
+ "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
726
388
  ]
727
389
 
728
390
  [[package]]
729
391
  name = "rayon-core"
730
- version = "1.5.0"
731
- source = "registry+https://github.com/rust-lang/crates.io-index"
732
- dependencies = [
733
- "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
734
- "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
735
- "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
736
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
737
- "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
738
- ]
739
-
740
- [[package]]
741
- name = "rdrand"
742
- version = "0.4.0"
743
- source = "registry+https://github.com/rust-lang/crates.io-index"
744
- dependencies = [
745
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
746
- ]
747
-
748
- [[package]]
749
- name = "regex"
750
- version = "1.1.9"
751
- source = "registry+https://github.com/rust-lang/crates.io-index"
752
- dependencies = [
753
- "aho-corasick 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
754
- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
755
- "regex-syntax 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)",
756
- "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
757
- "utf8-ranges 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
758
- ]
759
-
760
- [[package]]
761
- name = "regex-syntax"
762
- version = "0.6.8"
392
+ version = "1.7.0"
763
393
  source = "registry+https://github.com/rust-lang/crates.io-index"
764
394
  dependencies = [
765
- "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
395
+ "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
396
+ "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
397
+ "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
398
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
399
+ "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
766
400
  ]
767
401
 
768
402
  [[package]]
769
- name = "rgb"
770
- version = "0.8.13"
403
+ name = "redox_syscall"
404
+ version = "0.1.56"
771
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
772
406
 
773
407
  [[package]]
774
408
  name = "ruby-ext-wasm"
775
- version = "0.3.0"
409
+ version = "0.4.0"
776
410
  dependencies = [
777
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
778
- "rutie 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
779
- "wasmer-runtime 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
780
- "wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
411
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
412
+ "rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
413
+ "wasmer-runtime 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
781
414
  ]
782
415
 
783
- [[package]]
784
- name = "rustc-demangle"
785
- version = "0.1.15"
786
- source = "registry+https://github.com/rust-lang/crates.io-index"
787
-
788
416
  [[package]]
789
417
  name = "rustc_version"
790
418
  version = "0.2.3"
@@ -795,21 +423,16 @@ dependencies = [
795
423
 
796
424
  [[package]]
797
425
  name = "rutie"
798
- version = "0.6.1"
426
+ version = "0.7.0"
799
427
  source = "registry+https://github.com/rust-lang/crates.io-index"
800
428
  dependencies = [
801
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
802
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
429
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
430
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
803
431
  ]
804
432
 
805
- [[package]]
806
- name = "ryu"
807
- version = "1.0.0"
808
- source = "registry+https://github.com/rust-lang/crates.io-index"
809
-
810
433
  [[package]]
811
434
  name = "scopeguard"
812
- version = "0.3.3"
435
+ version = "1.1.0"
813
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
437
 
815
438
  [[package]]
@@ -827,7 +450,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
827
450
 
828
451
  [[package]]
829
452
  name = "serde"
830
- version = "1.0.94"
453
+ version = "1.0.104"
831
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
832
455
 
833
456
  [[package]]
@@ -835,141 +458,87 @@ name = "serde-bench"
835
458
  version = "0.0.7"
836
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
837
460
  dependencies = [
838
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
839
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
461
+ "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
462
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
840
463
  ]
841
464
 
842
465
  [[package]]
843
466
  name = "serde_bytes"
844
- version = "0.10.5"
467
+ version = "0.11.3"
845
468
  source = "registry+https://github.com/rust-lang/crates.io-index"
846
469
  dependencies = [
847
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
470
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
848
471
  ]
849
472
 
850
473
  [[package]]
851
474
  name = "serde_derive"
852
- version = "1.0.94"
475
+ version = "1.0.104"
853
476
  source = "registry+https://github.com/rust-lang/crates.io-index"
854
477
  dependencies = [
855
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
856
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
857
- "syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
478
+ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
479
+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
480
+ "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
858
481
  ]
859
482
 
860
483
  [[package]]
861
- name = "serde_json"
862
- version = "1.0.40"
484
+ name = "smallvec"
485
+ version = "0.6.13"
863
486
  source = "registry+https://github.com/rust-lang/crates.io-index"
864
487
  dependencies = [
865
- "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
866
- "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
867
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
488
+ "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
868
489
  ]
869
490
 
870
491
  [[package]]
871
492
  name = "smallvec"
872
- version = "0.6.10"
873
- source = "registry+https://github.com/rust-lang/crates.io-index"
874
-
875
- [[package]]
876
- name = "stable_deref_trait"
877
- version = "1.1.1"
493
+ version = "1.2.0"
878
494
  source = "registry+https://github.com/rust-lang/crates.io-index"
879
495
 
880
496
  [[package]]
881
- name = "strsim"
882
- version = "0.8.0"
497
+ name = "subtle"
498
+ version = "1.0.0"
883
499
  source = "registry+https://github.com/rust-lang/crates.io-index"
884
500
 
885
501
  [[package]]
886
502
  name = "syn"
887
- version = "0.15.39"
503
+ version = "1.0.16"
888
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
505
  dependencies = [
890
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
891
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
892
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
893
- ]
894
-
895
- [[package]]
896
- name = "synstructure"
897
- version = "0.10.2"
898
- source = "registry+https://github.com/rust-lang/crates.io-index"
899
- dependencies = [
900
- "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
901
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
902
- "syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)",
903
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
506
+ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
507
+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
508
+ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
904
509
  ]
905
510
 
906
511
  [[package]]
907
512
  name = "target-lexicon"
908
- version = "0.4.0"
909
- source = "registry+https://github.com/rust-lang/crates.io-index"
910
- dependencies = [
911
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
912
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
913
- "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
914
- ]
915
-
916
- [[package]]
917
- name = "termcolor"
918
- version = "1.0.5"
513
+ version = "0.9.0"
919
514
  source = "registry+https://github.com/rust-lang/crates.io-index"
920
- dependencies = [
921
- "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
922
- ]
923
515
 
924
516
  [[package]]
925
- name = "textwrap"
926
- version = "0.11.0"
517
+ name = "thiserror"
518
+ version = "1.0.11"
927
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
520
  dependencies = [
929
- "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
521
+ "thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
930
522
  ]
931
523
 
932
524
  [[package]]
933
- name = "thread_local"
934
- version = "0.3.6"
525
+ name = "thiserror-impl"
526
+ version = "1.0.11"
935
527
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
528
  dependencies = [
937
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
529
+ "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
530
+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
531
+ "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
938
532
  ]
939
533
 
940
534
  [[package]]
941
535
  name = "typenum"
942
- version = "1.10.0"
943
- source = "registry+https://github.com/rust-lang/crates.io-index"
944
-
945
- [[package]]
946
- name = "ucd-util"
947
- version = "0.1.3"
948
- source = "registry+https://github.com/rust-lang/crates.io-index"
949
-
950
- [[package]]
951
- name = "unicode-width"
952
- version = "0.1.5"
536
+ version = "1.11.2"
953
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
538
 
955
539
  [[package]]
956
540
  name = "unicode-xid"
957
- version = "0.1.0"
958
- source = "registry+https://github.com/rust-lang/crates.io-index"
959
-
960
- [[package]]
961
- name = "utf8-ranges"
962
- version = "1.0.3"
963
- source = "registry+https://github.com/rust-lang/crates.io-index"
964
-
965
- [[package]]
966
- name = "vec_map"
967
- version = "0.8.1"
968
- source = "registry+https://github.com/rust-lang/crates.io-index"
969
-
970
- [[package]]
971
- name = "version_check"
972
- version = "0.1.5"
541
+ version = "0.2.0"
973
542
  source = "registry+https://github.com/rust-lang/crates.io-index"
974
543
 
975
544
  [[package]]
@@ -979,312 +548,205 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
979
548
 
980
549
  [[package]]
981
550
  name = "wasmer-clif-backend"
982
- version = "0.5.5"
551
+ version = "0.14.1"
983
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
553
  dependencies = [
985
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
986
- "cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
987
- "cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
988
- "cranelift-native 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
989
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
990
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
991
- "nix 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)",
992
- "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
993
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
554
+ "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
555
+ "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
556
+ "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
557
+ "cranelift-native 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
558
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
559
+ "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
560
+ "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
561
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
994
562
  "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
995
- "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
996
- "serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
997
- "target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
998
- "wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
999
- "wasmer-clif-fork-wasm 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
1000
- "wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1001
- "wasmer-win-exception-handler 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1002
- "wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
1003
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
563
+ "serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
564
+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
565
+ "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
566
+ "wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
567
+ "wasmer-clif-fork-wasm 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
568
+ "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
569
+ "wasmer-win-exception-handler 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
570
+ "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
571
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1004
572
  ]
1005
573
 
1006
574
  [[package]]
1007
575
  name = "wasmer-clif-fork-frontend"
1008
- version = "0.31.0"
576
+ version = "0.52.0"
1009
577
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
578
  dependencies = [
1011
- "cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
1012
- "log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
1013
- "target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
579
+ "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
580
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
581
+ "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
582
+ "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
1014
583
  ]
1015
584
 
1016
585
  [[package]]
1017
586
  name = "wasmer-clif-fork-wasm"
1018
- version = "0.31.0"
587
+ version = "0.52.0"
1019
588
  source = "registry+https://github.com/rust-lang/crates.io-index"
1020
589
  dependencies = [
1021
- "cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
1022
- "cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
1023
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1024
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1025
- "log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
1026
- "wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
1027
- "wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
590
+ "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
591
+ "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
592
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
593
+ "thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
594
+ "wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
595
+ "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
1028
596
  ]
1029
597
 
1030
598
  [[package]]
1031
599
  name = "wasmer-runtime"
1032
- version = "0.5.5"
600
+ version = "0.14.1"
1033
601
  source = "registry+https://github.com/rust-lang/crates.io-index"
1034
602
  dependencies = [
1035
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
603
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1036
604
  "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
1037
- "wasmer-clif-backend 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1038
- "wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
605
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
606
+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
607
+ "wasmer-clif-backend 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
608
+ "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
1039
609
  ]
1040
610
 
1041
611
  [[package]]
1042
612
  name = "wasmer-runtime-core"
1043
- version = "0.5.5"
613
+ version = "0.14.1"
1044
614
  source = "registry+https://github.com/rust-lang/crates.io-index"
1045
615
  dependencies = [
1046
- "bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1047
- "blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1048
- "cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
1049
- "colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
616
+ "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
617
+ "blake3 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
618
+ "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
1050
619
  "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
1051
620
  "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
1052
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
1053
- "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
1054
- "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
1055
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1056
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
1057
- "nix 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
1058
- "page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1059
- "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
621
+ "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
622
+ "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
623
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
624
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
625
+ "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
626
+ "page_size 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
627
+ "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
1060
628
  "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
1061
- "serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
629
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
1062
630
  "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
1063
- "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
1064
- "serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)",
1065
- "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
1066
- "wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)",
1067
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
631
+ "serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
632
+ "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
633
+ "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
634
+ "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
635
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1068
636
  ]
1069
637
 
1070
638
  [[package]]
1071
639
  name = "wasmer-win-exception-handler"
1072
- version = "0.5.5"
640
+ version = "0.14.1"
1073
641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1074
642
  dependencies = [
1075
- "bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)",
1076
- "cmake 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
1077
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
1078
- "regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
1079
- "wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1080
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
643
+ "cmake 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
644
+ "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
645
+ "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
646
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1081
647
  ]
1082
648
 
1083
649
  [[package]]
1084
650
  name = "wasmparser"
1085
- version = "0.32.1"
1086
- source = "registry+https://github.com/rust-lang/crates.io-index"
1087
-
1088
- [[package]]
1089
- name = "which"
1090
- version = "2.0.1"
1091
- source = "registry+https://github.com/rust-lang/crates.io-index"
1092
- dependencies = [
1093
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1094
- "libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
1095
- ]
1096
-
1097
- [[package]]
1098
- name = "winapi"
1099
- version = "0.2.8"
651
+ version = "0.45.2"
1100
652
  source = "registry+https://github.com/rust-lang/crates.io-index"
1101
653
 
1102
654
  [[package]]
1103
655
  name = "winapi"
1104
- version = "0.3.7"
656
+ version = "0.3.8"
1105
657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1106
658
  dependencies = [
1107
659
  "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1108
660
  "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1109
661
  ]
1110
662
 
1111
- [[package]]
1112
- name = "winapi-build"
1113
- version = "0.1.1"
1114
- source = "registry+https://github.com/rust-lang/crates.io-index"
1115
-
1116
663
  [[package]]
1117
664
  name = "winapi-i686-pc-windows-gnu"
1118
665
  version = "0.4.0"
1119
666
  source = "registry+https://github.com/rust-lang/crates.io-index"
1120
667
 
1121
- [[package]]
1122
- name = "winapi-util"
1123
- version = "0.1.2"
1124
- source = "registry+https://github.com/rust-lang/crates.io-index"
1125
- dependencies = [
1126
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1127
- ]
1128
-
1129
668
  [[package]]
1130
669
  name = "winapi-x86_64-pc-windows-gnu"
1131
670
  version = "0.4.0"
1132
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
1133
672
 
1134
- [[package]]
1135
- name = "wincolor"
1136
- version = "1.0.1"
1137
- source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- dependencies = [
1139
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1140
- "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1141
- ]
1142
-
1143
- [[package]]
1144
- name = "winconsole"
1145
- version = "0.10.0"
1146
- source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- dependencies = [
1148
- "cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
1149
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1150
- "rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)",
1151
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1152
- ]
1153
-
1154
673
  [metadata]
1155
- "checksum aho-corasick 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "36b7aa1ccb7d7ea3f437cf025a2ab1c47cc6c1bc9fc84918ff449def12f5e282"
1156
- "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
1157
- "checksum approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08abcc3b4e9339e33a3d0a5ed15d84a687350c05689d825e0f6655eef9e76a94"
1158
- "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
1159
- "checksum arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b8d73f9beda665eaa98ab9e4f7442bd4e7de6652587de55b2525e52e29c1b0ba"
1160
- "checksum atty 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ecaaea69f52b3b18633611ec0007d188517d0366f47ff703d400fa6879d6f8d5"
1161
- "checksum autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0e49efa51329a5fd37e7c79db4621af617cd4e3e5bc224939808d076077077bf"
1162
- "checksum backtrace 0.3.32 (registry+https://github.com/rust-lang/crates.io-index)" = "18b50f5258d1a9ad8396d2d345827875de4261b158124d4c819d9b351454fae5"
1163
- "checksum backtrace-sys 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)" = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61"
1164
- "checksum bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9f04a5e50dc80b3d5d35320889053637d15011aed5e66b66b37ae798c65da6f7"
1165
- "checksum bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8f7f7f0701772b17de73e4f5cbcb1dd6926f4706cba4c1ab62c5367f8bdc94e1"
1166
- "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd"
1167
- "checksum blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce2571a6cd634670daa2977cc894c1cc2ba57c563c498e5a82c35446f34d056e"
1168
- "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
1169
- "checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
1170
- "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af"
1171
- "checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33"
1172
- "checksum cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "64a4b57c8f4e3a2e9ac07e0f6abc9c24b6fc9e1b54c3478cfb598f3d0023e51c"
1173
- "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4"
1174
- "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
674
+ "checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
675
+ "checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
676
+ "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
677
+ "checksum bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
678
+ "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
679
+ "checksum blake3 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46080006c1505f12f64dd2a09264b343381ed3190fa02c8005d5d662ac571c63"
680
+ "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
681
+ "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
682
+ "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
1175
683
  "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
1176
- "checksum cmake 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "2ca4386c8954b76a8415b63959337d940d724b336cabd3afe189c2b51a7e1ff0"
1177
- "checksum colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cdb90b60f2927f8d76139c72dbde7e10c3a2bc47c8594c9c7a66529f2687c03"
1178
- "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
1179
- "checksum cranelift-bforest 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "409f92af3dd276e112b72873a3ef02613e3c5f55b81d5d5d04f3157d4f8b8c54"
1180
- "checksum cranelift-codegen 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b303542a56fba4cbaeea099fb30ed078b50de0e765fd69f7f5f410adbe31d95b"
1181
- "checksum cranelift-codegen-meta 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0fee15ed430092a6d14b7c6d627540bef732509b8097ae31e4e35526edaa129c"
1182
- "checksum cranelift-entity 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "739222c3740e4a8d6f0375bd95caba9b6c11afcba9f0e1d4f944d6bd99f84600"
1183
- "checksum cranelift-native 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce451162d18b7d82118e23ea7e12f7d8b98557549404bd71215548de79eb0736"
1184
- "checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13"
1185
- "checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4"
1186
- "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
1187
- "checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c"
684
+ "checksum cmake 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "81fb25b677f8bf1eb325017cb6bb8452f87969db0fedb4f757b297bee78a7c62"
685
+ "checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
686
+ "checksum cranelift-bforest 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "56aa72ef104c5d634f2f9e84ef2c47e116c1d185fae13f196b97ca84b0a514f1"
687
+ "checksum cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "460b9d20793543599308d22f5a1172c196e63a780c4e9aacb0b3f4f63d63ffe1"
688
+ "checksum cranelift-codegen-meta 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc70e4e8ccebd53a4f925147def857c9e9f7fe0fdbef4bb645a420473e012f50"
689
+ "checksum cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3992000be4d18df0fe332b7c42c120de896e8ec54cd7b6cfa050910a8c9f6e2f"
690
+ "checksum cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "722957e05064d97a3157bf0976deed0f3e8ee4f8a4ce167a7c724ca63a4e8bd9"
691
+ "checksum cranelift-native 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "21398a0bc6ba389ea86964ac4a495426dd61080f2ddd306184777a8560fe9976"
692
+ "checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
693
+ "checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
694
+ "checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
695
+ "checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
696
+ "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
1188
697
  "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
1189
- "checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b"
1190
- "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
698
+ "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
1191
699
  "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
1192
700
  "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
1193
- "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
1194
- "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
1195
- "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1196
701
  "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
1197
702
  "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
1198
- "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
1199
- "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
1200
- "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
1201
- "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
1202
- "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
1203
- "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
1204
- "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1205
- "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
1206
- "checksum libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)" = "3262021842bf00fe07dbd6cf34ff25c99d7a7ebef8deea84db72be3ea3bb0aff"
1207
- "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
1208
- "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
1209
- "checksum log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "c275b6ad54070ac2d665eef9197db647b32239c9d244bfb6f041a766d00da5b3"
1210
- "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
703
+ "checksum hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
704
+ "checksum hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
705
+ "checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
706
+ "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
707
+ "checksum libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)" = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
708
+ "checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
709
+ "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
710
+ "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
1211
711
  "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
1212
- "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
1213
- "checksum nix 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "319fffb13b63c0f4ff5a4e1c97566e7e741561ff5d03bf8bbf11653454bbd70b"
1214
- "checksum nix 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4dbdc256eaac2e3bd236d93ad999d3479ef775c863dbda3068c4006a92eec51b"
1215
- "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
1216
- "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
1217
- "checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
1218
- "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32"
1219
- "checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273"
1220
- "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
1221
- "checksum page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f89ef58b3d32420dbd1a43d2f38ae92f6239ef12bb556ab09ca55445f5a67242"
1222
- "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
1223
- "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
1224
- "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1225
- "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
1226
- "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
1227
- "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
1228
- "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1229
- "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
1230
- "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
1231
- "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1232
- "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
1233
- "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
1234
- "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
1235
- "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
1236
- "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
1237
- "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
1238
- "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
1239
- "checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d"
1240
- "checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4"
1241
- "checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2"
1242
- "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1243
- "checksum regex 1.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "d9d8297cc20bbb6184f8b45ff61c8ee6a9ac56c156cec8e38c3e5084773c44ad"
1244
- "checksum regex-syntax 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "9b01330cce219c1c6b2e209e5ed64ccd587ae5c67bed91c0b49eecf02ae40e21"
1245
- "checksum rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4f089652ca87f5a82a62935ec6172a534066c7b97be003cc8f702ee9a7a59c92"
1246
- "checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af"
712
+ "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9"
713
+ "checksum nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229"
714
+ "checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
715
+ "checksum page_size 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd"
716
+ "checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc"
717
+ "checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1"
718
+ "checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
719
+ "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
720
+ "checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf"
721
+ "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
722
+ "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
723
+ "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
1247
724
  "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1248
- "checksum rutie 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8ed4df3604d82e3fbd9e4657dd8a8fb23c5d9c0be5779751f0d18bdbb6017c50"
1249
- "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997"
1250
- "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
725
+ "checksum rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "99a4174504679e66c524ffd839767eeca900d8c2e332ecf8bc6b9f15a5b8e5b1"
726
+ "checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1251
727
  "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1252
728
  "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1253
- "checksum serde 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)" = "076a696fdea89c19d3baed462576b8f6d663064414b5c793642da8dfeb99475b"
729
+ "checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
1254
730
  "checksum serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d733da87e79faaac25616e33d26299a41143fd4cd42746cbb0e91d8feea243fd"
1255
- "checksum serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" = "defbb8a83d7f34cc8380751eeb892b825944222888aff18996ea7901f24aec88"
1256
- "checksum serde_derive 1.0.94 (registry+https://github.com/rust-lang/crates.io-index)" = "ef45eb79d6463b22f5f9e16d283798b7c0175ba6050bc25c1a946c122727fe7b"
1257
- "checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704"
1258
- "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
1259
- "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
1260
- "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1261
- "checksum syn 0.15.39 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d960b829a55e56db167e861ddb43602c003c7be0bee1d345021703fac2fb7c"
1262
- "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f"
1263
- "checksum target-lexicon 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1b0ab4982b8945c35cc1c46a83a9094c414f6828a099ce5dcaa8ee2b04642dcb"
1264
- "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e"
1265
- "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1266
- "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
1267
- "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
1268
- "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
1269
- "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
1270
- "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
1271
- "checksum utf8-ranges 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9d50aa7650df78abf942826607c62468ce18d9019673d4a2ebe1865dbb96ffde"
1272
- "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
1273
- "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
731
+ "checksum serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "325a073952621257820e7a3469f55ba4726d8b28657e7e36653d1c36dc2c84ae"
732
+ "checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
733
+ "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
734
+ "checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
735
+ "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
736
+ "checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
737
+ "checksum target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4c118a7a38378f305a9e111fcb2f7f838c0be324bfb31a77ea04f7f6e684b4"
738
+ "checksum thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ee14bf8e6767ab4c687c9e8bc003879e042a96fd67a3ba5934eadb6536bef4db"
739
+ "checksum thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "a7b51e1fbc44b5a0840be594fbc0f960be09050f2617e61e6aa43bef97cd3ef4"
740
+ "checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9"
741
+ "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
1274
742
  "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
1275
- "checksum wasmer-clif-backend 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c9d23d87d8b9d2548d787b808b99c10cff1b210d82d8a7b081a3a339e63d3fe1"
1276
- "checksum wasmer-clif-fork-frontend 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "620fd484c3348e4bb565d861cddb0c05170337aaa152b6ba61620d054ab17cd9"
1277
- "checksum wasmer-clif-fork-wasm 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5e42fa4281de137d5a23b8197d29c218212077c6d55d0dfed7bb80c76308ba4"
1278
- "checksum wasmer-runtime 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2bc14bdc1eeecf2ec7df393af1830c82d51e178d450fa0320e45a8f01980548c"
1279
- "checksum wasmer-runtime-core 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ff7eec0a09a115ccb0c50b726b319f7e3193bd870f82849ee9e81968a10d2392"
1280
- "checksum wasmer-win-exception-handler 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "afe92ce57a2f7e6694804719441fe77b3a9217897d3ece4eaec16c2acb4e45cd"
1281
- "checksum wasmparser 0.32.1 (registry+https://github.com/rust-lang/crates.io-index)" = "22d1801de30f112ddaf665291097694ee33a36d1cb414b53a921d05b3519674a"
1282
- "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
1283
- "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
1284
- "checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770"
1285
- "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
743
+ "checksum wasmer-clif-backend 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ea74b659f78bffcc2db4bd77bf27ce66907ab76728d012346b130fe384e11399"
744
+ "checksum wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2e13201ef9ef527ad30a6bf1b08e3e024a40cf2731f393d80375dc88506207"
745
+ "checksum wasmer-clif-fork-wasm 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a8b09302cc4fdc4efc03823cb3e1880b0fde578ba43f27ddd212811cb28c1530"
746
+ "checksum wasmer-runtime 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4a005e93916e9c4d6bb67fd301b4840fa3994be01806659fc94a72a85386550e"
747
+ "checksum wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "af29c21b4b17c90035dc5bc6a4dcf018b16acfd745631c905f2a7f04e3e2c74e"
748
+ "checksum wasmer-win-exception-handler 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8e5ede589f678bb6c061e173394506589fd2bae9165d841b218c5d07b3082cd4"
749
+ "checksum wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8b4eab1d9971d0803729cba3617b56eb04fcb4bd25361cb63880ed41a42f20d5"
750
+ "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
1286
751
  "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1287
- "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
1288
752
  "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1289
- "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
1290
- "checksum winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ef84b96d10db72dd980056666d7f1e7663ce93d82fa33b63e71c966f4cf5032"