wasmer 0.1.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.cargo/config +1 -1
  3. data/.github/workflows/documentation.yml +50 -0
  4. data/.github/workflows/test.yml +73 -0
  5. data/.gitignore +3 -1
  6. data/CHANGELOG.md +225 -0
  7. data/Cargo.lock +747 -708
  8. data/Cargo.toml +7 -21
  9. data/Gemfile +2 -3
  10. data/LICENSE +21 -0
  11. data/README.md +1 -0
  12. data/Rakefile +4 -3
  13. data/bors.toml +6 -0
  14. data/crates/rutie-derive-macros/Cargo.toml +19 -0
  15. data/crates/rutie-derive-macros/README.md +4 -0
  16. data/crates/rutie-derive-macros/src/class.rs +156 -0
  17. data/crates/rutie-derive-macros/src/function.rs +178 -0
  18. data/crates/rutie-derive-macros/src/lib.rs +27 -0
  19. data/crates/rutie-derive-macros/src/methods.rs +282 -0
  20. data/crates/rutie-derive/Cargo.toml +14 -0
  21. data/crates/rutie-derive/README.md +97 -0
  22. data/crates/rutie-derive/src/lib.rs +4 -0
  23. data/crates/rutie-derive/src/upcast.rs +47 -0
  24. data/crates/rutie-test/Cargo.toml +10 -0
  25. data/crates/rutie-test/src/lib.rs +38 -0
  26. data/crates/wasmer/Cargo.toml +27 -0
  27. data/crates/wasmer/README.md +229 -0
  28. data/crates/wasmer/src/doc.rs +1512 -0
  29. data/crates/wasmer/src/error.rs +55 -0
  30. data/crates/wasmer/src/exports.rs +107 -0
  31. data/crates/wasmer/src/externals/function.rs +159 -0
  32. data/crates/wasmer/src/externals/global.rs +62 -0
  33. data/crates/wasmer/src/externals/memory.rs +117 -0
  34. data/crates/wasmer/src/externals/mod.rs +9 -0
  35. data/crates/wasmer/src/externals/table.rs +41 -0
  36. data/crates/wasmer/src/import_object.rs +78 -0
  37. data/crates/wasmer/src/instance.rs +45 -0
  38. data/crates/wasmer/src/lib.rs +307 -0
  39. data/crates/wasmer/src/memory/mod.rs +1 -0
  40. data/crates/wasmer/src/memory/views.rs +112 -0
  41. data/crates/wasmer/src/module.rs +106 -0
  42. data/crates/wasmer/src/prelude.rs +3 -0
  43. data/crates/wasmer/src/store.rs +22 -0
  44. data/crates/wasmer/src/types.rs +396 -0
  45. data/crates/wasmer/src/values.rs +84 -0
  46. data/crates/wasmer/src/wasi.rs +226 -0
  47. data/crates/wasmer/src/wat.rs +20 -0
  48. data/justfile +20 -2
  49. data/lib/wasmer.rb +29 -3
  50. data/wasmer.gemspec +8 -12
  51. metadata +53 -49
  52. data/.circleci/config.yml +0 -70
  53. data/README.md +0 -279
  54. data/lib/wasmer/version.rb +0 -3
  55. data/src/instance.rs +0 -282
  56. data/src/lib.rs +0 -98
  57. data/src/memory/mod.rs +0 -120
  58. data/src/memory/view.rs +0 -127
  59. data/src/module.rs +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66d948e289c9851f9f766b0cdfdc2c34d96e70ac3e028891f138553b114348fa
4
- data.tar.gz: f4c4d9cd85f20177573da3a55666e97675add7ad11fc2c1aa793158a649c4dba
3
+ metadata.gz: a0b5a7f8164754c818f0352ebaa181d70258535ff07994b9e04e6ea9d1076602
4
+ data.tar.gz: df967113956d0ed35d18b2ab71a186580458fe082487aedb3f32945c54e6c7b4
5
5
  SHA512:
6
- metadata.gz: 637758cb646962b5fcb34a4777e2527fd81783319748f51fe54e85b8b8efd0af7661c5594059949f05617c4beb04bd7b5ad33f14304790db875a0f16d33116db
7
- data.tar.gz: dc07a70a0cfb2be89faf9a7949746891ddfbe77e3907d27d9c9588d510c0dd405c259997db650b2791e96fe82c418c28e88593f3ed0fe3996b4cd9cb4609dc87
6
+ metadata.gz: edaf9d42e9728a8f59ed7ab8b147a1bda48716c18b5dc58ecde96d6dd70a9f740c69a0a52db6432a82b8251228722e9ca4cf5180b24067e695bd811dc16adcb8
7
+ data.tar.gz: 92f0d97641b95be071c2745a78976634c8f847b8564528613fa049b73428ab1f0c00e440a9d58fa6ced1741d95d88a179224021bed2bbe3f7fcb84bcc222e85c
data/.cargo/config CHANGED
@@ -1,4 +1,4 @@
1
- [target.x86_64-apple-darwin]
1
+ [target.'cfg(target_os = "macos")]']
2
2
  rustflags = [
3
3
  "-C", "link-arg=-Wl",
4
4
  "-C", "link-arg=-undefined",
@@ -0,0 +1,50 @@
1
+ name: Publish documentation
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ test:
10
+ name: Build and Publish
11
+
12
+ strategy:
13
+ matrix:
14
+ target:
15
+ - id: 'linux-amd64'
16
+ os: 'ubuntu-latest'
17
+ target-name: 'x86_64-unknown-linux-gnu'
18
+ rust-toolchain: 'stable'
19
+
20
+ runs-on: ${{ matrix.target.os }}
21
+
22
+ steps:
23
+ - name: Check out code
24
+ uses: actions/checkout@v2
25
+
26
+ - name: Set up Rust
27
+ uses: actions-rs/toolchain@v1
28
+ with:
29
+ toolchain: ${{ matrix.target.rust-toolchain }}
30
+ default: true
31
+ override: true
32
+ target: ${{ matrix.target.target-name }}
33
+
34
+ - name: Set up just
35
+ shell: bash
36
+ run: |
37
+ export PATH="$HOME/.cargo/bin:$PATH"
38
+ test -f $HOME/.cargo/bin/just || cargo install just
39
+
40
+ - name: Build the documentation
41
+ shell: bash
42
+ run: |
43
+ export PATH="$HOME/.cargo/bin:$PATH"
44
+ just doc
45
+
46
+ - name: Publish the documentation
47
+ uses: peaceiris/actions-gh-pages@v3
48
+ with:
49
+ github_token: ${{ secrets.GITHUB_TOKEN }}
50
+ publish_dir: ./target/doc/
@@ -0,0 +1,73 @@
1
+ name: Build and Test
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - staging
8
+ - trying
9
+ - 'prepare-*'
10
+ pull_request:
11
+ branches:
12
+ - '**'
13
+
14
+ jobs:
15
+ test:
16
+ name: Build and Test
17
+
18
+ strategy:
19
+ matrix:
20
+ ruby: ['2.6', '2.7', '3.0']
21
+ target:
22
+ - id: 'linux-amd64'
23
+ os: 'ubuntu-latest'
24
+ target-name: 'x86_64-unknown-linux-gnu'
25
+ rust-toolchain: 'stable'
26
+
27
+ - id: 'darwin-amd64'
28
+ os: 'macos-latest'
29
+ target-name: 'x86_64-apple-darwin'
30
+ rust-toolchain: 'stable'
31
+
32
+ # As soon as one job fails in the matrix, all the other
33
+ # in-progress jobs are canceled.
34
+ fail-fast: false
35
+
36
+ runs-on: ${{ matrix.target.os }}
37
+
38
+ steps:
39
+ - name: Check out code
40
+ uses: actions/checkout@v2
41
+
42
+ - name: Set up Rust
43
+ uses: actions-rs/toolchain@v1
44
+ with:
45
+ toolchain: ${{ matrix.target.rust-toolchain }}
46
+ default: true
47
+ override: true
48
+ target: ${{ matrix.target.target-name }}
49
+
50
+ - name: Set up Ruby ${{ matrix.ruby }}
51
+ uses: ruby/setup-ruby@v1
52
+ with:
53
+ ruby-version: ${{ matrix.ruby }}
54
+
55
+ - name: Set up just
56
+ shell: bash
57
+ run: |
58
+ export PATH="$HOME/.cargo/bin:$PATH"
59
+ test -f $HOME/.cargo/bin/just || cargo install just
60
+
61
+ - name: Compile the library
62
+ shell: bash
63
+ run: |
64
+ export PATH="$HOME/.cargo/bin:$PATH"
65
+ gem install rake
66
+ gem install bundler
67
+ just build
68
+
69
+ - name: Run the tests
70
+ shell: bash
71
+ run: |
72
+ export PATH="$HOME/.cargo/bin:$PATH"
73
+ just test-all
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
+ /.bundle
1
2
  /Gemfile.lock
2
3
  /pkg
3
- /target
4
+ /target
5
+ /vendor
data/CHANGELOG.md ADDED
@@ -0,0 +1,225 @@
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
+ * [1.0.0](#100---2021-07-01)
9
+ * [0.5.0](#050---2021-05-17)
10
+ * [0.4.0](#040---2020-02-03)
11
+ * [0.3.0](#030---2019-07-16)
12
+ * [0.2.0](#020---2019-05-01)
13
+
14
+ ## [Unreleased]
15
+
16
+ ## [1.0.0] - 2021-07-01
17
+
18
+ It's basically the 0.5.0 version. The only noticeable change is that
19
+ the Wasmer runtime has been updated to version 2.0.
20
+
21
+ ## Added
22
+
23
+ * All examples are now tested as part of the test suite
24
+ ([#53](https://github.com/wasmerio/wasmer-ruby/pull/53) by [@Hywan])
25
+
26
+ ## Changed
27
+
28
+ * The Ruby embedding has been updated to Wasmer 2.0, which is faster
29
+ in many regards
30
+ ([#57](https://github.com/wasmerio/wasmer-ruby/pull/57) by [@Hywan])
31
+
32
+ ## [0.5.0] - 2021-05-17
33
+
34
+ This is a full rewrite of the entire project. This version is a
35
+ candidate to become the 1.0 version.
36
+
37
+ We advise to take a look at:
38
+
39
+ * [the new documentation
40
+ online](https://wasmerio.github.io/wasmer-ruby/wasmer_ruby/index.html),
41
+ * [the collection of
42
+ examples](https://github.com/wasmerio/wasmer-ruby/tree/master/examples).
43
+
44
+ Shortly, here are the new types the extension provides:
45
+
46
+ * `Store`, which holds the engine, the compiler etc.
47
+ * `Module`, which represents a Wasm module, with `validate`, `new`,
48
+ `name=`, `name`, `exports`, `imports`, `custom_sections`,
49
+ `serialize` and `deserialize`,
50
+ * `Instance`, which represents a Wasm instance, with `new` and
51
+ `exports`,
52
+ * `Exports`, which represents a collection of exported entities, with
53
+ `respond_to_missing?`, `method_missing`, and `length`,
54
+ * `ImportObject`, which represents a collection of imports that will
55
+ be passed to `Instance`, with `new`, `contains_namespace`, and
56
+ `register`,
57
+ * `Function`, which represents an imported or exported function, with
58
+ `new`, `call` and `type`,
59
+ * `Memory`, which represents an imported or exported memory, with
60
+ `new`, `type`, `size`, `data_size`, `grow`, + memory views that
61
+ extends `Enumerable`,
62
+ * `Global`, which represents an imported or exported global, with
63
+ `new`, `mutable?`, `value`, `value=`, and `type`,
64
+ * `Table`, which represents an imported or exported table, with `new`
65
+ (small API for the moment),
66
+ * `Type`, `FunctionType`, `MemoryType`, `GlobalType` and `TableType`,
67
+ * `ExportType` and `ImportType`,
68
+ * `Value` which represents a Wasm value,
69
+ * `Wasi` module, which provides the `Version`, `StateBuilder` and
70
+ `Environment` classes.
71
+
72
+ ## Added
73
+
74
+ * Online documentation, with tested examples
75
+ ([#51](https://github.com/wasmerio/wasmer-ruby/pull/51) by [@Hywan])
76
+ * Tests run against Ruby 2.7 + 3.0, and against Linux + macOS
77
+ ([#49](https://github.com/wasmerio/wasmer-ruby/pull/49) by [@Hywan])
78
+
79
+ ## Changed
80
+
81
+ As we said, the extension has been fully rewritten, and the code is
82
+ likely to not be compatible anymore. Here are the most notable
83
+ patches:
84
+
85
+ * The big rewrite
86
+ ([#48](https://github.com/wasmerio/wasmer-ruby/pull/48) by [@Hywan])
87
+ * Remove Ruby dependency to `rutie`
88
+ ([#52](https://github.com/wasmerio/wasmer-ruby/pull/52) by [@Hywan])
89
+
90
+ ## [0.4.0] - 2020-02-03
91
+
92
+ ### Added
93
+
94
+ * Support exported global variables
95
+ ([#32](https://github.com/wasmerio/wasmer-ruby/pull/32) by
96
+ [@Hywan])
97
+
98
+ ```ruby
99
+ instance = Wasmer::Instance.new bytes
100
+ x = instance.globals.x
101
+
102
+ assert x.mutable
103
+ assert_equal x.value, 7
104
+
105
+ x.value = 42
106
+
107
+ assert_equal x.value, 42
108
+ ```
109
+
110
+ * Support memory without an exported memory
111
+ ([#31](https://github.com/wasmerio/wasmer-ruby/pull/31) by
112
+ [@Hywan])
113
+
114
+ ### Changed
115
+
116
+ * Set `@memory` to `nil` if none is exported
117
+ ([#33](https://github.com/wasmerio/wasmer-ruby/pull/33) by
118
+ [@Hywan])
119
+ * Migrate CI from CircleCI to Github Actions
120
+ ([#28](https://github.com/wasmerio/wasmer-ruby/pull/28) by
121
+ [@Hywan])
122
+ * Format code
123
+ ([#26](https://github.com/wasmerio/wasmer-ruby/pull/26) by
124
+ [@Atul9])
125
+ * Update Rutie to 0.7.0 (Rust) and 0.0.4 (Ruby)
126
+ ([#23](https://github.com/wasmerio/wasmer-ruby/pull/23) by
127
+ [@Hywan])
128
+ * Update Wasmer from 0.6.0 to 0.14.0
129
+ ([#23](https://github.com/wasmerio/wasmer-ruby/pull/23),
130
+ [#24](https://github.com/wasmerio/wasmer-ruby/pull/24),
131
+ [#25](https://github.com/wasmerio/wasmer-ruby/pull/25),
132
+ [#35](https://github.com/wasmerio/wasmer-ruby/pull/35),
133
+ by [@Hywan])
134
+
135
+ ### Security
136
+
137
+ * Update `rake` and other dependencies
138
+ ([#36](https://github.com/wasmerio/wasmer-ruby/pull/36) by
139
+ [@Hywan])
140
+
141
+ ## [0.3.0] - 2019-07-16
142
+
143
+ ### Added
144
+
145
+ * Add the `Memory.grow` method
146
+ ([#19](https://github.com/wasmerio/wasmer-ruby/pull/19) by
147
+ [@Hywan])
148
+ * Typed arrays implement [the `Enumerable`
149
+ mixin](https://docs.ruby-lang.org/en/2.6.0/Enumerable.html)
150
+ ([#15](https://github.com/wasmerio/wasmer-ruby/pull/15) by
151
+ [@irxground])
152
+
153
+ ```ruby
154
+ memory = instance.memory.uint8_view pointer
155
+ string = ""
156
+
157
+ # Now we can write this more Ruby idiomatic loop:
158
+ memory.each do |char|
159
+ break if char == 0
160
+ string += char.chr
161
+ end
162
+ ```
163
+ * Implement `instance.exports.respond_to?` to test whether an exported
164
+ function exists
165
+ ([#9](https://github.com/wasmerio/wasmer-ruby/pull/9) by
166
+ [@irxground])
167
+
168
+ ```ruby
169
+ instance = Wasmer::Instance.new(self.bytes)
170
+
171
+ assert instance.exports.respond_to?(:foo)
172
+ ```
173
+ * Handle exported functions that return nothing, aka void functions
174
+ ([#8](https://github.com/wasmerio/wasmer-ruby/pull/8) by [@Hywan])
175
+ * Add the `greet` eaxmple
176
+ ([#12](https://github.com/wasmerio/wasmer-ruby/pull/12) by
177
+ [@Hywan])
178
+ * Set up Bors
179
+ ([#10](https://github.com/wasmerio/wasmer-ruby/pull/10) by
180
+ [@Hywan])
181
+
182
+ ### Changed
183
+
184
+ * Improve Ruby exception raising
185
+ ([#5](https://github.com/wasmerio/wasmer-ruby/pull/5) by
186
+ [@irxground])
187
+ * Update Wasmer to 0.5.5
188
+ ([#20](https://github.com/wasmerio/wasmer-ruby/pull/20) by
189
+ [@Hywan])
190
+ * Update Wasmer to 0.4.2
191
+ ([#11](https://github.com/wasmerio/wasmer-ruby/pull/11) by
192
+ [@Hywan])
193
+ * Update Wasmer to 0.4.1
194
+ ([#7](https://github.com/wasmerio/wasmer-ruby/pull/7) by [@Hywan])
195
+ * Update Rutie
196
+ ([#16](https://github.com/wasmerio/wasmer-ruby/pull/16) by
197
+ [@edvakf])
198
+ * Move all symbols inside the `Wasmer` module
199
+ ([#4](https://github.com/wasmerio/wasmer-ruby/pull/4) by
200
+ [@irxground])
201
+
202
+ ```ruby
203
+ # Read from the `Wasmer` module.
204
+ instance = Wasmer::Instance.new()
205
+ ```
206
+
207
+ * Improve documentation
208
+ ([#14](https://github.com/wasmerio/wasmer-ruby/pull/14) by
209
+ [@denniscollective])
210
+ * Use `assert_nil` instead of `assert_equal_nil` in tests
211
+ ([#13](https://github.com/wasmerio/wasmer-ruby/pull/13) by
212
+ [@Hywan])
213
+
214
+ ## [0.2.0] - 2019-05-01
215
+
216
+ [Unreleased]: https://github.com/wasmerio/wasmer-ruby/compare/1.0.0...HEAD
217
+ [1.0.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.5.0...1.0.0
218
+ [0.5.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.4.0...0.5.0
219
+ [0.4.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.3.0...0.4.0
220
+ [0.3.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.2.0...0.3.0
221
+ [0.2.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.1.0...0.2.0
222
+ [@Hywan]: https://github.com/Hywan
223
+ [@irxground]: https://github.com/irxground
224
+ [@edvakf]: https://github.com/edvakf
225
+ [@Atul9]: https://github.com/Atul9
data/Cargo.lock CHANGED
@@ -1,1230 +1,1269 @@
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.3"
6
- source = "registry+https://github.com/rust-lang/crates.io-index"
7
- dependencies = [
8
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
9
- ]
3
+ version = 3
10
4
 
11
5
  [[package]]
12
- name = "ansi_term"
13
- version = "0.11.0"
6
+ name = "addr2line"
7
+ version = "0.15.2"
14
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "e7a2e47a1fbe209ee101dd6d61285226744c6c8d3c21c8dc878ba6cb9f467f3a"
15
10
  dependencies = [
16
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
11
+ "gimli",
17
12
  ]
18
13
 
19
14
  [[package]]
20
- name = "arrayref"
21
- version = "0.3.5"
15
+ name = "adler"
16
+ version = "1.0.2"
22
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
23
19
 
24
20
  [[package]]
25
- name = "arrayvec"
26
- version = "0.4.10"
21
+ name = "anyhow"
22
+ version = "1.0.41"
27
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
28
- dependencies = [
29
- "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
30
- ]
31
-
32
- [[package]]
33
- name = "atty"
34
- version = "0.2.11"
35
- source = "registry+https://github.com/rust-lang/crates.io-index"
36
- dependencies = [
37
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
38
- "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
39
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
40
- ]
24
+ checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61"
41
25
 
42
26
  [[package]]
43
27
  name = "autocfg"
44
- version = "0.1.2"
28
+ version = "1.0.1"
45
29
  source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
46
31
 
47
32
  [[package]]
48
33
  name = "backtrace"
49
- version = "0.3.15"
50
- source = "registry+https://github.com/rust-lang/crates.io-index"
51
- dependencies = [
52
- "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
53
- "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
54
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
55
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
56
- "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
57
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
58
- ]
59
-
60
- [[package]]
61
- name = "backtrace-sys"
62
- version = "0.1.28"
34
+ version = "0.3.60"
63
35
  source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "b7815ea54e4d821e791162e078acbebfd6d8c8939cd559c9335dceb1c8ca7282"
64
37
  dependencies = [
65
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
66
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
38
+ "addr2line",
39
+ "cc",
40
+ "cfg-if 1.0.0",
41
+ "libc",
42
+ "miniz_oxide",
43
+ "object",
44
+ "rustc-demangle",
67
45
  ]
68
46
 
69
47
  [[package]]
70
- name = "bindgen"
71
- version = "0.46.0"
48
+ name = "bincode"
49
+ version = "1.3.3"
72
50
  source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
73
52
  dependencies = [
74
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
75
- "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
76
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
77
- "clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)",
78
- "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
79
- "env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
80
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
81
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
82
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
83
- "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
84
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
85
- "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
86
- "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
87
- "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
53
+ "serde",
88
54
  ]
89
55
 
90
56
  [[package]]
91
57
  name = "bitflags"
92
- version = "1.0.4"
58
+ version = "1.2.1"
93
59
  source = "registry+https://github.com/rust-lang/crates.io-index"
94
-
95
- [[package]]
96
- name = "blake2b_simd"
97
- version = "0.4.1"
98
- source = "registry+https://github.com/rust-lang/crates.io-index"
99
- dependencies = [
100
- "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
101
- "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
102
- "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
103
- "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
104
- ]
60
+ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
105
61
 
106
62
  [[package]]
107
63
  name = "byteorder"
108
- version = "1.3.1"
109
- source = "registry+https://github.com/rust-lang/crates.io-index"
110
-
111
- [[package]]
112
- name = "cast"
113
- version = "0.2.2"
64
+ version = "1.4.3"
114
65
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
115
67
 
116
68
  [[package]]
117
69
  name = "cc"
118
- version = "1.0.35"
70
+ version = "1.0.68"
119
71
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
120
73
 
121
74
  [[package]]
122
- name = "cexpr"
123
- version = "0.3.5"
75
+ name = "cfg-if"
76
+ version = "0.1.10"
124
77
  source = "registry+https://github.com/rust-lang/crates.io-index"
125
- dependencies = [
126
- "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
127
- ]
78
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
128
79
 
129
80
  [[package]]
130
81
  name = "cfg-if"
131
- version = "0.1.7"
82
+ version = "1.0.0"
132
83
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
133
85
 
134
86
  [[package]]
135
- name = "clang-sys"
136
- version = "0.26.4"
87
+ name = "cranelift-bforest"
88
+ version = "0.74.0"
137
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "c8ca3560686e7c9c7ed7e0fe77469f2410ba5d7781b1acaa9adc8d8deea28e3e"
138
91
  dependencies = [
139
- "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
140
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
141
- "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
92
+ "cranelift-entity",
142
93
  ]
143
94
 
144
95
  [[package]]
145
- name = "clap"
146
- version = "2.33.0"
96
+ name = "cranelift-codegen"
97
+ version = "0.74.0"
147
98
  source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "baf9bf1ffffb6ce3d2e5ebc83549bd2436426c99b31cc550d521364cbe35d276"
148
100
  dependencies = [
149
- "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
150
- "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
151
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
152
- "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
153
- "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
154
- "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
155
- "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
101
+ "cranelift-bforest",
102
+ "cranelift-codegen-meta",
103
+ "cranelift-codegen-shared",
104
+ "cranelift-entity",
105
+ "gimli",
106
+ "log",
107
+ "regalloc",
108
+ "smallvec",
109
+ "target-lexicon",
156
110
  ]
157
111
 
158
112
  [[package]]
159
- name = "cloudabi"
160
- version = "0.0.3"
113
+ name = "cranelift-codegen-meta"
114
+ version = "0.74.0"
161
115
  source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "4cc21936a5a6d07e23849ffe83e5c1f6f50305c074f4b2970ca50c13bf55b821"
162
117
  dependencies = [
163
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
118
+ "cranelift-codegen-shared",
119
+ "cranelift-entity",
164
120
  ]
165
121
 
166
122
  [[package]]
167
- name = "cmake"
168
- version = "0.1.38"
123
+ name = "cranelift-codegen-shared"
124
+ version = "0.74.0"
169
125
  source = "registry+https://github.com/rust-lang/crates.io-index"
170
- dependencies = [
171
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
172
- ]
126
+ checksum = "ca5b6ffaa87560bebe69a5446449da18090b126037920b0c1c6d5945f72faf6b"
173
127
 
174
128
  [[package]]
175
- name = "constant_time_eq"
176
- version = "0.1.3"
129
+ name = "cranelift-entity"
130
+ version = "0.74.0"
177
131
  source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "7d6b4a8bef04f82e4296782646f733c641d09497df2fabf791323fefaa44c64c"
178
133
 
179
134
  [[package]]
180
- name = "cranelift-bforest"
181
- version = "0.30.0"
135
+ name = "cranelift-frontend"
136
+ version = "0.74.0"
182
137
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "c31b783b351f966fce33e3c03498cb116d16d97a8f9978164a60920bd0d3a99c"
183
139
  dependencies = [
184
- "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
140
+ "cranelift-codegen",
141
+ "log",
142
+ "smallvec",
143
+ "target-lexicon",
185
144
  ]
186
145
 
187
146
  [[package]]
188
- name = "cranelift-codegen"
189
- version = "0.30.0"
147
+ name = "crc32fast"
148
+ version = "1.2.1"
190
149
  source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
191
151
  dependencies = [
192
- "cranelift-bforest 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
193
- "cranelift-codegen-meta 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
194
- "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
195
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
196
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
197
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
198
- "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
152
+ "cfg-if 1.0.0",
199
153
  ]
200
154
 
201
155
  [[package]]
202
- name = "cranelift-codegen-meta"
203
- version = "0.30.0"
156
+ name = "crossbeam-channel"
157
+ version = "0.5.1"
204
158
  source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
205
160
  dependencies = [
206
- "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
161
+ "cfg-if 1.0.0",
162
+ "crossbeam-utils",
207
163
  ]
208
164
 
209
165
  [[package]]
210
- name = "cranelift-entity"
211
- version = "0.30.0"
212
- source = "registry+https://github.com/rust-lang/crates.io-index"
213
-
214
- [[package]]
215
- name = "cranelift-frontend"
216
- version = "0.30.0"
166
+ name = "crossbeam-deque"
167
+ version = "0.8.0"
217
168
  source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
218
170
  dependencies = [
219
- "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
220
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
221
- "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
171
+ "cfg-if 1.0.0",
172
+ "crossbeam-epoch",
173
+ "crossbeam-utils",
222
174
  ]
223
175
 
224
176
  [[package]]
225
- name = "cranelift-native"
226
- version = "0.30.0"
177
+ name = "crossbeam-epoch"
178
+ version = "0.9.5"
227
179
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
228
181
  dependencies = [
229
- "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
230
- "raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
231
- "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
182
+ "cfg-if 1.0.0",
183
+ "crossbeam-utils",
184
+ "lazy_static",
185
+ "memoffset",
186
+ "scopeguard",
232
187
  ]
233
188
 
234
189
  [[package]]
235
- name = "cranelift-wasm"
236
- version = "0.30.0"
190
+ name = "crossbeam-utils"
191
+ version = "0.8.5"
237
192
  source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
238
194
  dependencies = [
239
- "cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
240
- "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
241
- "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
242
- "cranelift-frontend 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
243
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
244
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
245
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
246
- "wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)",
195
+ "cfg-if 1.0.0",
196
+ "lazy_static",
247
197
  ]
248
198
 
249
199
  [[package]]
250
- name = "crossbeam-deque"
251
- version = "0.2.0"
200
+ name = "ctor"
201
+ version = "0.1.20"
252
202
  source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d"
253
204
  dependencies = [
254
- "crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
255
- "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
205
+ "quote",
206
+ "syn",
256
207
  ]
257
208
 
258
209
  [[package]]
259
- name = "crossbeam-epoch"
260
- version = "0.3.1"
210
+ name = "darling"
211
+ version = "0.12.4"
261
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
262
214
  dependencies = [
263
- "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
264
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
265
- "crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
266
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
267
- "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
268
- "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
269
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
215
+ "darling_core",
216
+ "darling_macro",
270
217
  ]
271
218
 
272
219
  [[package]]
273
- name = "crossbeam-utils"
274
- version = "0.2.2"
220
+ name = "darling_core"
221
+ version = "0.12.4"
275
222
  source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
276
224
  dependencies = [
277
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
225
+ "fnv",
226
+ "ident_case",
227
+ "proc-macro2",
228
+ "quote",
229
+ "strsim",
230
+ "syn",
278
231
  ]
279
232
 
280
233
  [[package]]
281
- name = "digest"
282
- version = "0.8.0"
234
+ name = "darling_macro"
235
+ version = "0.12.4"
283
236
  source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
284
238
  dependencies = [
285
- "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
239
+ "darling_core",
240
+ "quote",
241
+ "syn",
286
242
  ]
287
243
 
288
244
  [[package]]
289
245
  name = "either"
290
- version = "1.5.2"
246
+ version = "1.6.1"
291
247
  source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
292
249
 
293
250
  [[package]]
294
- name = "env_logger"
295
- version = "0.6.1"
251
+ name = "enumset"
252
+ version = "1.0.6"
296
253
  source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "fbd795df6708a599abf1ee10eacc72efd052b7a5f70fdf0715e4d5151a6db9c3"
297
255
  dependencies = [
298
- "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
299
- "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
300
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
301
- "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
302
- "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
256
+ "enumset_derive",
303
257
  ]
304
258
 
305
259
  [[package]]
306
- name = "errno"
307
- version = "0.2.4"
260
+ name = "enumset_derive"
261
+ version = "0.5.4"
308
262
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "e19c52f9ec503c8a68dc04daf71a04b07e690c32ab1a8b68e33897f255269d47"
309
264
  dependencies = [
310
- "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
311
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
312
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
265
+ "darling",
266
+ "proc-macro2",
267
+ "quote",
268
+ "syn",
313
269
  ]
314
270
 
315
271
  [[package]]
316
- name = "errno-dragonfly"
317
- version = "0.1.1"
272
+ name = "erased-serde"
273
+ version = "0.3.16"
318
274
  source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "3de9ad4541d99dc22b59134e7ff8dc3d6c988c89ecd7324bf10a8362b07a2afa"
319
276
  dependencies = [
320
- "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
321
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
277
+ "serde",
322
278
  ]
323
279
 
324
280
  [[package]]
325
- name = "failure"
326
- version = "0.1.5"
281
+ name = "fallible-iterator"
282
+ version = "0.2.0"
327
283
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
- dependencies = [
329
- "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
330
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
331
- ]
284
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
285
+
286
+ [[package]]
287
+ name = "fnv"
288
+ version = "1.0.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
332
291
 
333
292
  [[package]]
334
- name = "failure_derive"
335
- version = "0.1.5"
293
+ name = "generational-arena"
294
+ version = "0.2.8"
336
295
  source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "8e1d3b771574f62d0548cee0ad9057857e9fc25d7a3335f140c84f6acd0bf601"
337
297
  dependencies = [
338
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
339
- "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
340
- "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
341
- "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
298
+ "cfg-if 0.1.10",
299
+ "serde",
342
300
  ]
343
301
 
344
302
  [[package]]
345
- name = "fuchsia-cprng"
346
- version = "0.1.1"
303
+ name = "getrandom"
304
+ version = "0.2.3"
347
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
307
+ dependencies = [
308
+ "cfg-if 1.0.0",
309
+ "libc",
310
+ "wasi",
311
+ ]
348
312
 
349
313
  [[package]]
350
- name = "gcc"
351
- version = "0.3.55"
314
+ name = "ghost"
315
+ version = "0.1.2"
352
316
  source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479"
318
+ dependencies = [
319
+ "proc-macro2",
320
+ "quote",
321
+ "syn",
322
+ ]
353
323
 
354
324
  [[package]]
355
- name = "generic-array"
356
- version = "0.12.0"
325
+ name = "gimli"
326
+ version = "0.24.0"
357
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189"
358
329
  dependencies = [
359
- "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
330
+ "fallible-iterator",
331
+ "indexmap",
332
+ "stable_deref_trait",
360
333
  ]
361
334
 
362
335
  [[package]]
363
- name = "glob"
364
- version = "0.2.11"
336
+ name = "hashbrown"
337
+ version = "0.11.2"
365
338
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
366
340
 
367
341
  [[package]]
368
- name = "hashbrown"
369
- version = "0.1.8"
342
+ name = "hermit-abi"
343
+ version = "0.1.19"
370
344
  source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
371
346
  dependencies = [
372
- "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
373
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
374
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
347
+ "libc",
375
348
  ]
376
349
 
377
350
  [[package]]
378
- name = "hex"
379
- version = "0.3.2"
351
+ name = "ident_case"
352
+ version = "1.0.1"
380
353
  source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
381
355
 
382
356
  [[package]]
383
- name = "humantime"
384
- version = "1.2.0"
357
+ name = "indexmap"
358
+ version = "1.7.0"
385
359
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
386
361
  dependencies = [
387
- "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
362
+ "autocfg",
363
+ "hashbrown",
364
+ "serde",
388
365
  ]
389
366
 
390
367
  [[package]]
391
- name = "indexmap"
392
- version = "1.0.2"
393
- source = "registry+https://github.com/rust-lang/crates.io-index"
394
-
395
- [[package]]
396
- name = "itoa"
397
- version = "0.4.3"
368
+ name = "inventory"
369
+ version = "0.1.10"
398
370
  source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f"
372
+ dependencies = [
373
+ "ctor",
374
+ "ghost",
375
+ "inventory-impl",
376
+ ]
399
377
 
400
378
  [[package]]
401
- name = "kernel32-sys"
402
- version = "0.2.2"
379
+ name = "inventory-impl"
380
+ version = "0.1.10"
403
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51"
404
383
  dependencies = [
405
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
406
- "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
384
+ "proc-macro2",
385
+ "quote",
386
+ "syn",
407
387
  ]
408
388
 
409
389
  [[package]]
410
390
  name = "lazy_static"
411
- version = "1.3.0"
391
+ version = "1.4.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
394
+
395
+ [[package]]
396
+ name = "leb128"
397
+ version = "0.2.4"
412
398
  source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "3576a87f2ba00f6f106fdfcd16db1d698d648a26ad8e0573cad8537c3c362d2a"
413
400
 
414
401
  [[package]]
415
402
  name = "libc"
416
- version = "0.2.51"
403
+ version = "0.2.97"
417
404
  source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6"
418
406
 
419
407
  [[package]]
420
408
  name = "libloading"
421
- version = "0.5.0"
409
+ version = "0.7.0"
422
410
  source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "6f84d96438c15fcd6c3f244c8fce01d1e2b9c6b5623e9c711dc9286d8fc92d6a"
423
412
  dependencies = [
424
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
425
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
413
+ "cfg-if 1.0.0",
414
+ "winapi",
426
415
  ]
427
416
 
428
417
  [[package]]
429
- name = "lock_api"
430
- version = "0.1.5"
418
+ name = "log"
419
+ version = "0.4.14"
431
420
  source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
432
422
  dependencies = [
433
- "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
434
- "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
423
+ "cfg-if 1.0.0",
435
424
  ]
436
425
 
437
426
  [[package]]
438
- name = "log"
439
- version = "0.4.6"
427
+ name = "loupe"
428
+ version = "0.1.3"
440
429
  source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "9b6a72dfa44fe15b5e76b94307eeb2ff995a8c5b283b55008940c02e0c5b634d"
441
431
  dependencies = [
442
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
432
+ "indexmap",
433
+ "loupe-derive",
434
+ "rustversion",
443
435
  ]
444
436
 
445
437
  [[package]]
446
- name = "memchr"
447
- version = "2.2.0"
438
+ name = "loupe-derive"
439
+ version = "0.1.3"
448
440
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "c0fbfc88337168279f2e9ae06e157cfed4efd3316e14dc96ed074d4f2e6c5952"
442
+ dependencies = [
443
+ "quote",
444
+ "syn",
445
+ ]
449
446
 
450
447
  [[package]]
451
- name = "memmap"
452
- version = "0.7.0"
448
+ name = "mach"
449
+ version = "0.3.2"
453
450
  source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
454
452
  dependencies = [
455
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
456
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
453
+ "libc",
457
454
  ]
458
455
 
459
456
  [[package]]
460
- name = "memoffset"
461
- version = "0.2.1"
457
+ name = "memchr"
458
+ version = "2.4.0"
462
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
463
461
 
464
462
  [[package]]
465
- name = "nix"
466
- version = "0.12.0"
463
+ name = "memmap2"
464
+ version = "0.2.3"
467
465
  source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "723e3ebdcdc5c023db1df315364573789f8857c11b631a2fdfad7c00f5c046b4"
468
467
  dependencies = [
469
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
470
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
471
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
472
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
473
- "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
468
+ "libc",
474
469
  ]
475
470
 
476
471
  [[package]]
477
- name = "nix"
478
- version = "0.13.0"
472
+ name = "memoffset"
473
+ version = "0.6.4"
479
474
  source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
480
476
  dependencies = [
481
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
482
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
483
- "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
484
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
485
- "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
477
+ "autocfg",
486
478
  ]
487
479
 
488
480
  [[package]]
489
- name = "nodrop"
490
- version = "0.1.13"
481
+ name = "miniz_oxide"
482
+ version = "0.4.4"
491
483
  source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
485
+ dependencies = [
486
+ "adler",
487
+ "autocfg",
488
+ ]
492
489
 
493
490
  [[package]]
494
- name = "nom"
495
- version = "4.2.3"
491
+ name = "more-asserts"
492
+ version = "0.2.1"
496
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- dependencies = [
498
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
499
- "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
500
- ]
494
+ checksum = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"
501
495
 
502
496
  [[package]]
503
497
  name = "num_cpus"
504
- version = "1.10.0"
498
+ version = "1.13.0"
505
499
  source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
506
501
  dependencies = [
507
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
502
+ "hermit-abi",
503
+ "libc",
508
504
  ]
509
505
 
510
506
  [[package]]
511
- name = "owning_ref"
512
- version = "0.4.0"
507
+ name = "object"
508
+ version = "0.25.3"
513
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "a38f2be3697a57b4060074ff41b44c16870d916ad7877c17696e063257482bc7"
514
511
  dependencies = [
515
- "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
512
+ "crc32fast",
513
+ "indexmap",
514
+ "memchr",
516
515
  ]
517
516
 
518
517
  [[package]]
519
- name = "page_size"
520
- version = "0.4.1"
518
+ name = "paste"
519
+ version = "1.0.5"
521
520
  source = "registry+https://github.com/rust-lang/crates.io-index"
522
- dependencies = [
523
- "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
524
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
525
- "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
526
- ]
521
+ checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
527
522
 
528
523
  [[package]]
529
- name = "parking_lot"
530
- version = "0.7.1"
524
+ name = "pin-project-lite"
525
+ version = "0.2.7"
531
526
  source = "registry+https://github.com/rust-lang/crates.io-index"
532
- dependencies = [
533
- "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
534
- "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
535
- ]
527
+ checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
536
528
 
537
529
  [[package]]
538
- name = "parking_lot_core"
539
- version = "0.4.0"
530
+ name = "ppv-lite86"
531
+ version = "0.2.10"
540
532
  source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
534
+
535
+ [[package]]
536
+ name = "proc-macro-error"
537
+ version = "1.0.4"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
541
540
  dependencies = [
542
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
543
- "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
544
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
545
- "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
546
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
541
+ "proc-macro-error-attr",
542
+ "proc-macro2",
543
+ "quote",
544
+ "syn",
545
+ "version_check",
547
546
  ]
548
547
 
549
548
  [[package]]
550
- name = "peeking_take_while"
551
- version = "0.1.2"
549
+ name = "proc-macro-error-attr"
550
+ version = "1.0.4"
552
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
553
+ dependencies = [
554
+ "proc-macro2",
555
+ "quote",
556
+ "version_check",
557
+ ]
553
558
 
554
559
  [[package]]
555
560
  name = "proc-macro2"
556
- version = "0.4.27"
561
+ version = "1.0.27"
557
562
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
558
564
  dependencies = [
559
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
565
+ "unicode-xid",
560
566
  ]
561
567
 
562
568
  [[package]]
563
- name = "quick-error"
564
- version = "1.2.2"
569
+ name = "ptr_meta"
570
+ version = "0.1.3"
565
571
  source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "7424255320182a46c403331afed6f95e0259a7c578f9da54a27e262ef3b60118"
573
+ dependencies = [
574
+ "ptr_meta_derive",
575
+ ]
566
576
 
567
577
  [[package]]
568
- name = "quote"
569
- version = "0.6.12"
578
+ name = "ptr_meta_derive"
579
+ version = "0.1.2"
570
580
  source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "53005b9863728f508d3f23ae37e03d60986a01b65f7ae8397dcebaa1d5e54e10"
571
582
  dependencies = [
572
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
583
+ "proc-macro2",
584
+ "quote",
585
+ "syn",
573
586
  ]
574
587
 
575
588
  [[package]]
576
- name = "rand"
577
- version = "0.6.5"
589
+ name = "quote"
590
+ version = "1.0.9"
578
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
579
593
  dependencies = [
580
- "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
581
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
582
- "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
583
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
584
- "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
585
- "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
586
- "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
587
- "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
588
- "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
589
- "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
590
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
594
+ "proc-macro2",
591
595
  ]
592
596
 
593
597
  [[package]]
594
- name = "rand_chacha"
595
- version = "0.1.1"
598
+ name = "rand"
599
+ version = "0.8.4"
596
600
  source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
597
602
  dependencies = [
598
- "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
599
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
603
+ "libc",
604
+ "rand_chacha",
605
+ "rand_core",
606
+ "rand_hc",
600
607
  ]
601
608
 
602
609
  [[package]]
603
- name = "rand_core"
610
+ name = "rand_chacha"
604
611
  version = "0.3.1"
605
612
  source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
606
614
  dependencies = [
607
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
615
+ "ppv-lite86",
616
+ "rand_core",
608
617
  ]
609
618
 
610
619
  [[package]]
611
620
  name = "rand_core"
612
- version = "0.4.0"
621
+ version = "0.6.3"
613
622
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
624
+ dependencies = [
625
+ "getrandom",
626
+ ]
614
627
 
615
628
  [[package]]
616
629
  name = "rand_hc"
617
- version = "0.1.0"
630
+ version = "0.3.1"
618
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
619
633
  dependencies = [
620
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
634
+ "rand_core",
621
635
  ]
622
636
 
623
637
  [[package]]
624
- name = "rand_isaac"
625
- version = "0.1.1"
638
+ name = "rayon"
639
+ version = "1.5.1"
626
640
  source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
627
642
  dependencies = [
628
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
643
+ "autocfg",
644
+ "crossbeam-deque",
645
+ "either",
646
+ "rayon-core",
629
647
  ]
630
648
 
631
649
  [[package]]
632
- name = "rand_jitter"
633
- version = "0.1.3"
650
+ name = "rayon-core"
651
+ version = "1.9.1"
634
652
  source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
635
654
  dependencies = [
636
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
637
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
638
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
655
+ "crossbeam-channel",
656
+ "crossbeam-deque",
657
+ "crossbeam-utils",
658
+ "lazy_static",
659
+ "num_cpus",
639
660
  ]
640
661
 
641
662
  [[package]]
642
- name = "rand_os"
643
- version = "0.1.3"
663
+ name = "redox_syscall"
664
+ version = "0.2.9"
644
665
  source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
645
667
  dependencies = [
646
- "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
647
- "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
648
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
649
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
650
- "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
651
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
668
+ "bitflags",
652
669
  ]
653
670
 
654
671
  [[package]]
655
- name = "rand_pcg"
656
- version = "0.1.2"
672
+ name = "regalloc"
673
+ version = "0.0.31"
657
674
  source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "571f7f397d61c4755285cd37853fe8e03271c243424a907415909379659381c5"
658
676
  dependencies = [
659
- "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
660
- "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
677
+ "log",
678
+ "rustc-hash",
679
+ "smallvec",
661
680
  ]
662
681
 
663
682
  [[package]]
664
- name = "rand_xorshift"
665
- version = "0.1.1"
683
+ name = "region"
684
+ version = "2.2.0"
666
685
  source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0"
667
687
  dependencies = [
668
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
688
+ "bitflags",
689
+ "libc",
690
+ "mach",
691
+ "winapi",
669
692
  ]
670
693
 
671
694
  [[package]]
672
- name = "raw-cpuid"
673
- version = "6.1.0"
695
+ name = "remove_dir_all"
696
+ version = "0.5.3"
674
697
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
675
699
  dependencies = [
676
- "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
677
- "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
678
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
700
+ "winapi",
679
701
  ]
680
702
 
681
703
  [[package]]
682
- name = "rayon"
683
- version = "1.0.3"
704
+ name = "rkyv"
705
+ version = "0.6.7"
684
706
  source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "cb135b3e5e3311f0a254bfb00333f4bac9ef1d89888b84242a89eb8722b09a07"
685
708
  dependencies = [
686
- "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
687
- "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
688
- "rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
709
+ "memoffset",
710
+ "ptr_meta",
711
+ "rkyv_derive",
712
+ "seahash",
689
713
  ]
690
714
 
691
715
  [[package]]
692
- name = "rayon-core"
693
- version = "1.4.1"
716
+ name = "rkyv_derive"
717
+ version = "0.6.7"
694
718
  source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "ba8f489f6b6d8551bb15904293c1ad58a6abafa7d8390d15f7ed05a2afcd87d5"
695
720
  dependencies = [
696
- "crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
697
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
698
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
699
- "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
721
+ "proc-macro2",
722
+ "quote",
723
+ "syn",
700
724
  ]
701
725
 
702
726
  [[package]]
703
- name = "rdrand"
704
- version = "0.4.0"
727
+ name = "rustc-demangle"
728
+ version = "0.1.20"
705
729
  source = "registry+https://github.com/rust-lang/crates.io-index"
706
- dependencies = [
707
- "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
708
- ]
730
+ checksum = "dead70b0b5e03e9c814bcb6b01e03e68f7c57a80aa48c72ec92152ab3e818d49"
709
731
 
710
732
  [[package]]
711
- name = "redox_syscall"
712
- version = "0.1.54"
733
+ name = "rustc-hash"
734
+ version = "1.1.0"
713
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
714
737
 
715
738
  [[package]]
716
- name = "redox_termios"
717
- version = "0.1.1"
739
+ name = "rustversion"
740
+ version = "1.0.5"
718
741
  source = "registry+https://github.com/rust-lang/crates.io-index"
719
- dependencies = [
720
- "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
721
- ]
742
+ checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
722
743
 
723
744
  [[package]]
724
- name = "regex"
725
- version = "1.1.5"
745
+ name = "rutie"
746
+ version = "0.8.2"
726
747
  source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "678217ed742ca819057a79c0146703d1278afbb38896eb0283c410a6cab7c28c"
727
749
  dependencies = [
728
- "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
729
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
730
- "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
731
- "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
732
- "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
750
+ "lazy_static",
751
+ "libc",
733
752
  ]
734
753
 
735
754
  [[package]]
736
- name = "regex-syntax"
737
- version = "0.6.6"
738
- source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ name = "rutie-derive"
756
+ version = "0.1.0"
739
757
  dependencies = [
740
- "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
758
+ "rutie",
759
+ "rutie-derive-macros",
741
760
  ]
742
761
 
743
762
  [[package]]
744
- name = "ruby-ext-wasm"
745
- version = "0.1.1"
763
+ name = "rutie-derive-macros"
764
+ version = "0.1.0"
746
765
  dependencies = [
747
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
748
- "rutie 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
749
- "wasmer-runtime 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
750
- "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
766
+ "paste",
767
+ "proc-macro2",
768
+ "quote",
769
+ "syn",
751
770
  ]
752
771
 
753
772
  [[package]]
754
- name = "rustc-demangle"
755
- version = "0.1.14"
773
+ name = "rutie-test"
774
+ version = "0.1.0"
775
+
776
+ [[package]]
777
+ name = "scopeguard"
778
+ version = "1.1.0"
756
779
  source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
757
781
 
758
782
  [[package]]
759
- name = "rustc_version"
760
- version = "0.2.3"
783
+ name = "seahash"
784
+ version = "4.1.0"
761
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
- dependencies = [
763
- "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
764
- ]
786
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
765
787
 
766
788
  [[package]]
767
- name = "rutie"
768
- version = "0.5.4"
789
+ name = "serde"
790
+ version = "1.0.126"
769
791
  source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
770
793
  dependencies = [
771
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
772
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
794
+ "serde_derive",
773
795
  ]
774
796
 
775
797
  [[package]]
776
- name = "ryu"
777
- version = "0.2.7"
798
+ name = "serde_bytes"
799
+ version = "0.11.5"
778
800
  source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
802
+ dependencies = [
803
+ "serde",
804
+ ]
779
805
 
780
806
  [[package]]
781
- name = "scopeguard"
782
- version = "0.3.3"
807
+ name = "serde_derive"
808
+ version = "1.0.126"
783
809
  source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
811
+ dependencies = [
812
+ "proc-macro2",
813
+ "quote",
814
+ "syn",
815
+ ]
784
816
 
785
817
  [[package]]
786
- name = "semver"
787
- version = "0.9.0"
818
+ name = "smallvec"
819
+ version = "1.6.1"
788
820
  source = "registry+https://github.com/rust-lang/crates.io-index"
789
- dependencies = [
790
- "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
791
- ]
821
+ checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
792
822
 
793
823
  [[package]]
794
- name = "semver-parser"
795
- version = "0.7.0"
824
+ name = "stable_deref_trait"
825
+ version = "1.2.0"
796
826
  source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
797
828
 
798
829
  [[package]]
799
- name = "serde"
800
- version = "1.0.90"
830
+ name = "strsim"
831
+ version = "0.10.0"
801
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
802
834
 
803
835
  [[package]]
804
- name = "serde-bench"
805
- version = "0.0.7"
836
+ name = "syn"
837
+ version = "1.0.73"
806
838
  source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
807
840
  dependencies = [
808
- "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
809
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
841
+ "proc-macro2",
842
+ "quote",
843
+ "unicode-xid",
810
844
  ]
811
845
 
812
846
  [[package]]
813
- name = "serde_bytes"
814
- version = "0.10.5"
847
+ name = "target-lexicon"
848
+ version = "0.12.0"
815
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
816
- dependencies = [
817
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
818
- ]
850
+ checksum = "64ae3b39281e4b14b8123bdbaddd472b7dfe215e444181f2f9d2443c2444f834"
819
851
 
820
852
  [[package]]
821
- name = "serde_derive"
822
- version = "1.0.90"
853
+ name = "tempfile"
854
+ version = "3.2.0"
823
855
  source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
824
857
  dependencies = [
825
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
826
- "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
827
- "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
858
+ "cfg-if 1.0.0",
859
+ "libc",
860
+ "rand",
861
+ "redox_syscall",
862
+ "remove_dir_all",
863
+ "winapi",
828
864
  ]
829
865
 
830
866
  [[package]]
831
- name = "serde_json"
832
- version = "1.0.39"
867
+ name = "thiserror"
868
+ version = "1.0.25"
833
869
  source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "fa6f76457f59514c7eeb4e59d891395fab0b2fd1d40723ae737d64153392e9c6"
834
871
  dependencies = [
835
- "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
836
- "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
837
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
872
+ "thiserror-impl",
838
873
  ]
839
874
 
840
875
  [[package]]
841
- name = "smallvec"
842
- version = "0.6.9"
876
+ name = "thiserror-impl"
877
+ version = "1.0.25"
843
878
  source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "8a36768c0fbf1bb15eca10defa29526bda730a2376c2ab4393ccfa16fb1a318d"
880
+ dependencies = [
881
+ "proc-macro2",
882
+ "quote",
883
+ "syn",
884
+ ]
844
885
 
845
886
  [[package]]
846
- name = "stable_deref_trait"
847
- version = "1.1.1"
887
+ name = "time"
888
+ version = "0.1.43"
848
889
  source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
891
+ dependencies = [
892
+ "libc",
893
+ "winapi",
894
+ ]
849
895
 
850
896
  [[package]]
851
- name = "strsim"
852
- version = "0.8.0"
897
+ name = "tracing"
898
+ version = "0.1.26"
853
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
901
+ dependencies = [
902
+ "cfg-if 1.0.0",
903
+ "log",
904
+ "pin-project-lite",
905
+ "tracing-attributes",
906
+ "tracing-core",
907
+ ]
854
908
 
855
909
  [[package]]
856
- name = "syn"
857
- version = "0.15.31"
910
+ name = "tracing-attributes"
911
+ version = "0.1.15"
858
912
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2"
859
914
  dependencies = [
860
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
861
- "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
862
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
915
+ "proc-macro2",
916
+ "quote",
917
+ "syn",
863
918
  ]
864
919
 
865
920
  [[package]]
866
- name = "synstructure"
867
- version = "0.10.1"
921
+ name = "tracing-core"
922
+ version = "0.1.18"
868
923
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
869
925
  dependencies = [
870
- "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
871
- "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
872
- "syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)",
873
- "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
926
+ "lazy_static",
874
927
  ]
875
928
 
876
929
  [[package]]
877
- name = "target-lexicon"
878
- version = "0.3.0"
930
+ name = "typetag"
931
+ version = "0.1.7"
879
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "422619e1a7299befb977a1f6d8932c499f6151dbcafae715193570860cae8f07"
880
934
  dependencies = [
881
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
882
- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
883
- "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
935
+ "erased-serde",
936
+ "inventory",
937
+ "lazy_static",
938
+ "serde",
939
+ "typetag-impl",
884
940
  ]
885
941
 
886
942
  [[package]]
887
- name = "termcolor"
888
- version = "1.0.4"
943
+ name = "typetag-impl"
944
+ version = "0.1.7"
889
945
  source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "504f9626fe6cc1c376227864781996668e15c1ff251d222f63ef17f310bf1fec"
890
947
  dependencies = [
891
- "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
948
+ "proc-macro2",
949
+ "quote",
950
+ "syn",
892
951
  ]
893
952
 
894
953
  [[package]]
895
- name = "termion"
896
- version = "1.5.1"
954
+ name = "unicode-xid"
955
+ version = "0.2.2"
897
956
  source = "registry+https://github.com/rust-lang/crates.io-index"
898
- dependencies = [
899
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
900
- "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)",
901
- "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
902
- ]
957
+ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
903
958
 
904
959
  [[package]]
905
- name = "textwrap"
906
- version = "0.11.0"
960
+ name = "version_check"
961
+ version = "0.9.3"
907
962
  source = "registry+https://github.com/rust-lang/crates.io-index"
908
- dependencies = [
909
- "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
910
- ]
963
+ checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
911
964
 
912
965
  [[package]]
913
- name = "thread_local"
914
- version = "0.3.6"
966
+ name = "wasi"
967
+ version = "0.10.2+wasi-snapshot-preview1"
915
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
970
+
971
+ [[package]]
972
+ name = "wasmer"
973
+ version = "1.0.0"
916
974
  dependencies = [
917
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
975
+ "lazy_static",
976
+ "rutie",
977
+ "rutie-derive",
978
+ "rutie-test",
979
+ "wasmer 2.0.0",
980
+ "wasmer-wasi",
981
+ "wasmprinter",
982
+ "wat",
918
983
  ]
919
984
 
920
985
  [[package]]
921
- name = "typenum"
922
- version = "1.10.0"
986
+ name = "wasmer"
987
+ version = "2.0.0"
923
988
  source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "7f52e455a01d0fac439cd7a96ba9b519bdc84e923a5b96034054697ebb17cd75"
990
+ dependencies = [
991
+ "cfg-if 1.0.0",
992
+ "indexmap",
993
+ "loupe",
994
+ "more-asserts",
995
+ "target-lexicon",
996
+ "thiserror",
997
+ "wasmer-compiler",
998
+ "wasmer-compiler-cranelift",
999
+ "wasmer-derive",
1000
+ "wasmer-engine",
1001
+ "wasmer-engine-dylib",
1002
+ "wasmer-engine-universal",
1003
+ "wasmer-types",
1004
+ "wasmer-vm",
1005
+ "wat",
1006
+ "winapi",
1007
+ ]
924
1008
 
925
1009
  [[package]]
926
- name = "ucd-util"
927
- version = "0.1.3"
1010
+ name = "wasmer-compiler"
1011
+ version = "2.0.0"
928
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "cc86dda6f715f03104800be575a38382b35c3962953af9e9d8722dcf0bd2458f"
1014
+ dependencies = [
1015
+ "enumset",
1016
+ "loupe",
1017
+ "rkyv",
1018
+ "serde",
1019
+ "serde_bytes",
1020
+ "smallvec",
1021
+ "target-lexicon",
1022
+ "thiserror",
1023
+ "wasmer-types",
1024
+ "wasmer-vm",
1025
+ "wasmparser 0.78.2",
1026
+ ]
929
1027
 
930
1028
  [[package]]
931
- name = "unicode-width"
932
- version = "0.1.5"
1029
+ name = "wasmer-compiler-cranelift"
1030
+ version = "2.0.0"
933
1031
  source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "1a570746cbec434179e2d53357973a34dfdb208043104e8fac3b7b0023015cf6"
1033
+ dependencies = [
1034
+ "cranelift-codegen",
1035
+ "cranelift-entity",
1036
+ "cranelift-frontend",
1037
+ "gimli",
1038
+ "loupe",
1039
+ "more-asserts",
1040
+ "rayon",
1041
+ "smallvec",
1042
+ "tracing",
1043
+ "wasmer-compiler",
1044
+ "wasmer-types",
1045
+ "wasmer-vm",
1046
+ ]
934
1047
 
935
1048
  [[package]]
936
- name = "unicode-xid"
937
- version = "0.1.0"
1049
+ name = "wasmer-derive"
1050
+ version = "2.0.0"
938
1051
  source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "1ee7b351bcc1e782997c72dc0b5b328f3ddcad4813b8ce3cac3f25ae5a4ab56b"
1053
+ dependencies = [
1054
+ "proc-macro-error",
1055
+ "proc-macro2",
1056
+ "quote",
1057
+ "syn",
1058
+ ]
939
1059
 
940
1060
  [[package]]
941
- name = "utf8-ranges"
942
- version = "1.0.2"
1061
+ name = "wasmer-engine"
1062
+ version = "2.0.0"
943
1063
  source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "8454ead320a4017ba36ddd9ab4fbf7776fceea6ab0b79b5e53664a1682569fc3"
1065
+ dependencies = [
1066
+ "backtrace",
1067
+ "lazy_static",
1068
+ "loupe",
1069
+ "memmap2",
1070
+ "more-asserts",
1071
+ "rustc-demangle",
1072
+ "serde",
1073
+ "serde_bytes",
1074
+ "target-lexicon",
1075
+ "thiserror",
1076
+ "wasmer-compiler",
1077
+ "wasmer-types",
1078
+ "wasmer-vm",
1079
+ ]
944
1080
 
945
1081
  [[package]]
946
- name = "vec_map"
947
- version = "0.8.1"
1082
+ name = "wasmer-engine-dylib"
1083
+ version = "2.0.0"
948
1084
  source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "6aa390d123ebe23d5315c39f6063fcc18319661d03c8000f23d0fe1c011e8135"
1086
+ dependencies = [
1087
+ "cfg-if 1.0.0",
1088
+ "leb128",
1089
+ "libloading",
1090
+ "loupe",
1091
+ "rkyv",
1092
+ "serde",
1093
+ "tempfile",
1094
+ "tracing",
1095
+ "wasmer-compiler",
1096
+ "wasmer-engine",
1097
+ "wasmer-object",
1098
+ "wasmer-types",
1099
+ "wasmer-vm",
1100
+ "which",
1101
+ ]
949
1102
 
950
1103
  [[package]]
951
- name = "version_check"
952
- version = "0.1.5"
1104
+ name = "wasmer-engine-universal"
1105
+ version = "2.0.0"
953
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "0dffe8015f08915eb4939ebc8e521cde8246f272f5197ea60d46214ac5aef285"
1108
+ dependencies = [
1109
+ "cfg-if 1.0.0",
1110
+ "leb128",
1111
+ "loupe",
1112
+ "region",
1113
+ "rkyv",
1114
+ "wasmer-compiler",
1115
+ "wasmer-engine",
1116
+ "wasmer-types",
1117
+ "wasmer-vm",
1118
+ "winapi",
1119
+ ]
954
1120
 
955
1121
  [[package]]
956
- name = "void"
957
- version = "1.0.2"
1122
+ name = "wasmer-object"
1123
+ version = "2.0.0"
958
1124
  source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "c541c985799fc1444702501c15d41becfb066c92d9673defc1c7417fd8739e15"
1126
+ dependencies = [
1127
+ "object",
1128
+ "thiserror",
1129
+ "wasmer-compiler",
1130
+ "wasmer-types",
1131
+ ]
959
1132
 
960
1133
  [[package]]
961
- name = "wasmer-clif-backend"
962
- version = "0.3.0"
1134
+ name = "wasmer-types"
1135
+ version = "2.0.0"
963
1136
  source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "c91f75d3c31f8b1f8d818ff49624fc974220243cbc07a2252f408192e97c6b51"
964
1138
  dependencies = [
965
- "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
966
- "cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
967
- "cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
968
- "cranelift-native 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
969
- "cranelift-wasm 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
970
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
971
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
972
- "nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
973
- "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
974
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
975
- "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
976
- "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
977
- "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
978
- "target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
979
- "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
980
- "wasmer-win-exception-handler 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
981
- "wasmparser 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
982
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1139
+ "indexmap",
1140
+ "loupe",
1141
+ "rkyv",
1142
+ "serde",
1143
+ "thiserror",
983
1144
  ]
984
1145
 
985
1146
  [[package]]
986
- name = "wasmer-runtime"
987
- version = "0.3.0"
1147
+ name = "wasmer-vm"
1148
+ version = "2.0.0"
988
1149
  source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "469a12346a4831e7dac639b9646d8c9b24c7d2cf0cf458b77f489edb35060c1f"
989
1151
  dependencies = [
990
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
991
- "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
992
- "wasmer-clif-backend 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
993
- "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1152
+ "backtrace",
1153
+ "cc",
1154
+ "cfg-if 1.0.0",
1155
+ "indexmap",
1156
+ "libc",
1157
+ "loupe",
1158
+ "memoffset",
1159
+ "more-asserts",
1160
+ "region",
1161
+ "rkyv",
1162
+ "serde",
1163
+ "thiserror",
1164
+ "wasmer-types",
1165
+ "winapi",
994
1166
  ]
995
1167
 
996
1168
  [[package]]
997
- name = "wasmer-runtime-core"
998
- version = "0.3.0"
1169
+ name = "wasmer-wasi"
1170
+ version = "2.0.0"
999
1171
  source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "0a992dcafd11c584f3b8d84b7b4c6af350b63db03cf4452fc38647e8eab45994"
1000
1173
  dependencies = [
1001
- "blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1002
- "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
1003
- "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
1004
- "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
1005
- "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
1006
- "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
1007
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1008
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1009
- "nix 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
1010
- "page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
1011
- "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1012
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
1013
- "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
1014
- "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
1015
- "serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)",
1016
- "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
1017
- "wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)",
1018
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1174
+ "bincode",
1175
+ "generational-arena",
1176
+ "getrandom",
1177
+ "libc",
1178
+ "serde",
1179
+ "thiserror",
1180
+ "tracing",
1181
+ "typetag",
1182
+ "wasmer 2.0.0",
1183
+ "wasmer-wasi-types",
1184
+ "winapi",
1019
1185
  ]
1020
1186
 
1021
1187
  [[package]]
1022
- name = "wasmer-win-exception-handler"
1023
- version = "0.3.0"
1188
+ name = "wasmer-wasi-types"
1189
+ version = "2.0.0"
1024
1190
  source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "55a275df0190f65f9e62f25b6bc8505a55cc643e433c822fb03a5e3e11fe1c29"
1025
1192
  dependencies = [
1026
- "bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)",
1027
- "cmake 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
1028
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1029
- "regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1030
- "wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1031
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1193
+ "byteorder",
1194
+ "serde",
1195
+ "time",
1196
+ "wasmer-types",
1032
1197
  ]
1033
1198
 
1034
1199
  [[package]]
1035
1200
  name = "wasmparser"
1036
- version = "0.23.0"
1201
+ version = "0.78.2"
1037
1202
  source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "52144d4c78e5cf8b055ceab8e5fa22814ce4315d6002ad32cfd914f37c12fd65"
1038
1204
 
1039
1205
  [[package]]
1040
1206
  name = "wasmparser"
1041
- version = "0.29.2"
1207
+ version = "0.79.0"
1042
1208
  source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "5b5894be15a559c85779254700e1d35f02f843b5a69152e5c82c626d9fd66c0e"
1043
1210
 
1044
1211
  [[package]]
1045
- name = "which"
1046
- version = "2.0.1"
1212
+ name = "wasmprinter"
1213
+ version = "0.2.27"
1047
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "fe6f65000c9b653a87ba9b8bebe9230371337db2b7e70db724ee4b79d2b9936f"
1048
1216
  dependencies = [
1049
- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
1050
- "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
1217
+ "anyhow",
1218
+ "wasmparser 0.79.0",
1051
1219
  ]
1052
1220
 
1053
1221
  [[package]]
1054
- name = "winapi"
1055
- version = "0.2.8"
1056
- source = "registry+https://github.com/rust-lang/crates.io-index"
1057
-
1058
- [[package]]
1059
- name = "winapi"
1060
- version = "0.3.7"
1222
+ name = "wast"
1223
+ version = "36.0.0"
1061
1224
  source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "8b5d7ba374a364571da1cb0a379a3dc302582a2d9937a183bfe35b68ad5bb9c4"
1062
1226
  dependencies = [
1063
- "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1064
- "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1227
+ "leb128",
1065
1228
  ]
1066
1229
 
1067
1230
  [[package]]
1068
- name = "winapi-build"
1069
- version = "0.1.1"
1231
+ name = "wat"
1232
+ version = "1.0.38"
1070
1233
  source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "16383df7f0e3901484c2dda6294ed6895caa3627ce4f6584141dcf30a33a23e6"
1235
+ dependencies = [
1236
+ "wast",
1237
+ ]
1071
1238
 
1072
1239
  [[package]]
1073
- name = "winapi-i686-pc-windows-gnu"
1074
- version = "0.4.0"
1240
+ name = "which"
1241
+ version = "4.1.0"
1075
1242
  source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
1244
+ dependencies = [
1245
+ "either",
1246
+ "libc",
1247
+ ]
1076
1248
 
1077
1249
  [[package]]
1078
- name = "winapi-util"
1079
- version = "0.1.2"
1250
+ name = "winapi"
1251
+ version = "0.3.9"
1080
1252
  source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1081
1254
  dependencies = [
1082
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1255
+ "winapi-i686-pc-windows-gnu",
1256
+ "winapi-x86_64-pc-windows-gnu",
1083
1257
  ]
1084
1258
 
1085
1259
  [[package]]
1086
- name = "winapi-x86_64-pc-windows-gnu"
1260
+ name = "winapi-i686-pc-windows-gnu"
1087
1261
  version = "0.4.0"
1088
1262
  source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1089
1264
 
1090
1265
  [[package]]
1091
- name = "wincolor"
1092
- version = "1.0.1"
1266
+ name = "winapi-x86_64-pc-windows-gnu"
1267
+ version = "0.4.0"
1093
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- dependencies = [
1095
- "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
1096
- "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1097
- ]
1098
-
1099
- [metadata]
1100
- "checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c"
1101
- "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
1102
- "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
1103
- "checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71"
1104
- "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
1105
- "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799"
1106
- "checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637"
1107
- "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6"
1108
- "checksum bindgen 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8f7f7f0701772b17de73e4f5cbcb1dd6926f4706cba4c1ab62c5367f8bdc94e1"
1109
- "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
1110
- "checksum blake2b_simd 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce2571a6cd634670daa2977cc894c1cc2ba57c563c498e5a82c35446f34d056e"
1111
- "checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb"
1112
- "checksum cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427"
1113
- "checksum cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83"
1114
- "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af"
1115
- "checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4"
1116
- "checksum clang-sys 0.26.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6ef0c1bcf2e99c649104bd7a7012d8f8802684400e03db0ec0af48583c6fa0e4"
1117
- "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
1118
- "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
1119
- "checksum cmake 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)" = "96210eec534fc3fbfc0452a63769424eaa80205fda6cea98e5b61cb3d97bcec8"
1120
- "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
1121
- "checksum cranelift-bforest 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5a357d20666bf4a8c2d626a19f1b59dbca66cd844fb1e66c5612254fd0f7505"
1122
- "checksum cranelift-codegen 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab00cb149a5bb0f7e6dd391357356a5d71c335a431e8eece94f32da2d5a043f7"
1123
- "checksum cranelift-codegen-meta 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3797a2f450ac71297e083dd440d0cdd0d3bceabe4a3ca6bcb9e4077e9c0327d"
1124
- "checksum cranelift-entity 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b66e28877b75b3d2b31250f780bb5db8f68ae3df681cd56add803b2567ac4fd"
1125
- "checksum cranelift-frontend 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b72d55fd732b1f7a99d043a36c54a5679b6ec8bc777c8d954fb97c4fa0fce7eb"
1126
- "checksum cranelift-native 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0239f34836621a127c2132980b2f5c32a1be1c40e2d1a9a1a9bd5af33c12aee"
1127
- "checksum cranelift-wasm 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "740ebfba28c8433f06750f84819f1eb663ea9f5e4b9a81c01f4e52262d868b56"
1128
- "checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
1129
- "checksum crossbeam-epoch 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150"
1130
- "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
1131
- "checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c"
1132
- "checksum either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b"
1133
- "checksum env_logger 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a"
1134
- "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
1135
- "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
1136
- "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
1137
- "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
1138
- "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1139
- "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
1140
- "checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592"
1141
- "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
1142
- "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
1143
- "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
1144
- "checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114"
1145
- "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
1146
- "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b"
1147
- "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1148
- "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
1149
- "checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917"
1150
- "checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2"
1151
- "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
1152
- "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6"
1153
- "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
1154
- "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
1155
- "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
1156
- "checksum nix 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "921f61dc817b379d0834e45d5ec45beaacfae97082090a49c2cf30dcbc30206f"
1157
- "checksum nix 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46f0f3210768d796e8fa79ec70ee6af172dacbe7147f5e69be5240a47778302b"
1158
- "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
1159
- "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
1160
- "checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba"
1161
- "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
1162
- "checksum page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f89ef58b3d32420dbd1a43d2f38ae92f6239ef12bb556ab09ca55445f5a67242"
1163
- "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
1164
- "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
1165
- "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1166
- "checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915"
1167
- "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
1168
- "checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
1169
- "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
1170
- "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
1171
- "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1172
- "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
1173
- "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
1174
- "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
1175
- "checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832"
1176
- "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
1177
- "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
1178
- "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
1179
- "checksum raw-cpuid 6.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "30a9d219c32c9132f7be513c18be77c9881c7107d2ab5569d205a6a0f0e6dc7d"
1180
- "checksum rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473"
1181
- "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356"
1182
- "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1183
- "checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252"
1184
- "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
1185
- "checksum regex 1.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "559008764a17de49a3146b234641644ed37d118d1ef641a0bb573d146edc6ce0"
1186
- "checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96"
1187
- "checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288"
1188
- "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1189
- "checksum rutie 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "71e16dec514e9f92eb333c7f29037293e0a7515610db04a65138618f10a3d12e"
1190
- "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7"
1191
- "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
1192
- "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1193
- "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1194
- "checksum serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4"
1195
- "checksum serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d733da87e79faaac25616e33d26299a41143fd4cd42746cbb0e91d8feea243fd"
1196
- "checksum serde_bytes 0.10.5 (registry+https://github.com/rust-lang/crates.io-index)" = "defbb8a83d7f34cc8380751eeb892b825944222888aff18996ea7901f24aec88"
1197
- "checksum serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "58fc82bec244f168b23d1963b45c8bf5726e9a15a9d146a067f9081aeed2de79"
1198
- "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d"
1199
- "checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be"
1200
- "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
1201
- "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1202
- "checksum syn 0.15.31 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b4cfac95805274c6afdb12d8f770fa2d27c045953e7b630a81801953699a9a"
1203
- "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015"
1204
- "checksum target-lexicon 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d6923974ce4eb5bd28814756256d8ab71c28dd6e7483313fe7ab6614306bf633"
1205
- "checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f"
1206
- "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
1207
- "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1208
- "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
1209
- "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
1210
- "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
1211
- "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
1212
- "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
1213
- "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
1214
- "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
1215
- "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
1216
- "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
1217
- "checksum wasmer-clif-backend 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0afacbd83b3897e59ac7686ebeed7c39bfae20bcf150869eb695e55afe19e91a"
1218
- "checksum wasmer-runtime 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "272c74d8494e4c59dba5df3a256e7661d1684ad7d8b425b80e9fe80124def568"
1219
- "checksum wasmer-runtime-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b9fd8e1f3c4eac86563394354aee2b8dfc59a8b9f7051478dfb27bff568b668"
1220
- "checksum wasmer-win-exception-handler 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46e37084fc382f419fa06e09ffd388aa1e2eaeeb6bfa3b8edd311f3f857751e9"
1221
- "checksum wasmparser 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5e01c420bc7d36e778bd242e1167b079562ba8b34087122cc9057187026d060"
1222
- "checksum wasmparser 0.29.2 (registry+https://github.com/rust-lang/crates.io-index)" = "981a8797cf89762e0233ec45fae731cb79a4dfaee12d9f0fe6cee01e4ac58d00"
1223
- "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
1224
- "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
1225
- "checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770"
1226
- "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
1227
- "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1228
- "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
1229
- "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1230
- "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
1269
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"