wasmer 0.4.0 → 0.5.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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/documentation.yml +50 -0
  3. data/.github/workflows/test.yml +34 -61
  4. data/CHANGELOG.md +89 -29
  5. data/Cargo.lock +812 -380
  6. data/Cargo.toml +7 -20
  7. data/Gemfile +2 -3
  8. data/README.md +1 -0
  9. data/Rakefile +4 -3
  10. data/crates/rutie-derive-macros/Cargo.toml +19 -0
  11. data/crates/rutie-derive-macros/README.md +4 -0
  12. data/crates/rutie-derive-macros/src/class.rs +156 -0
  13. data/crates/rutie-derive-macros/src/function.rs +178 -0
  14. data/crates/rutie-derive-macros/src/lib.rs +27 -0
  15. data/crates/rutie-derive-macros/src/methods.rs +282 -0
  16. data/crates/rutie-derive/Cargo.toml +14 -0
  17. data/crates/rutie-derive/README.md +97 -0
  18. data/crates/rutie-derive/src/lib.rs +4 -0
  19. data/crates/rutie-derive/src/upcast.rs +47 -0
  20. data/crates/rutie-test/Cargo.toml +10 -0
  21. data/crates/rutie-test/src/lib.rs +38 -0
  22. data/crates/wasmer/Cargo.toml +27 -0
  23. data/crates/wasmer/README.md +228 -0
  24. data/crates/wasmer/src/doc.rs +1512 -0
  25. data/crates/wasmer/src/error.rs +55 -0
  26. data/crates/wasmer/src/exports.rs +107 -0
  27. data/crates/wasmer/src/externals/function.rs +159 -0
  28. data/crates/wasmer/src/externals/global.rs +62 -0
  29. data/crates/wasmer/src/externals/memory.rs +117 -0
  30. data/crates/wasmer/src/externals/mod.rs +9 -0
  31. data/crates/wasmer/src/externals/table.rs +41 -0
  32. data/crates/wasmer/src/import_object.rs +78 -0
  33. data/crates/wasmer/src/instance.rs +45 -0
  34. data/crates/wasmer/src/lib.rs +307 -0
  35. data/crates/wasmer/src/memory/mod.rs +1 -0
  36. data/crates/wasmer/src/memory/views.rs +112 -0
  37. data/crates/wasmer/src/module.rs +106 -0
  38. data/crates/wasmer/src/prelude.rs +3 -0
  39. data/crates/wasmer/src/store.rs +22 -0
  40. data/crates/wasmer/src/types.rs +390 -0
  41. data/crates/wasmer/src/values.rs +84 -0
  42. data/crates/wasmer/src/wasi.rs +226 -0
  43. data/crates/wasmer/src/wat.rs +20 -0
  44. data/justfile +7 -1
  45. data/lib/wasmer.rb +29 -3
  46. data/wasmer.gemspec +6 -10
  47. metadata +45 -47
  48. data/README.md +0 -332
  49. data/lib/wasmer/version.rb +0 -3
  50. data/src/error.rs +0 -16
  51. data/src/instance/exports.rs +0 -215
  52. data/src/instance/globals.rs +0 -234
  53. data/src/instance/mod.rs +0 -141
  54. data/src/lib.rs +0 -162
  55. data/src/memory/mod.rs +0 -158
  56. data/src/memory/view.rs +0 -145
  57. data/src/module.rs +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d8aa767f5a42c4be2df3e5d01b65ca28a6f2da8a7c15dccde66556864662974
4
- data.tar.gz: 65ce7e608c9fa52a1e087a8138de8755bf87681984fced89e50e1591a82dedc9
3
+ metadata.gz: f486455ca8948c8866114de80ba6da215de3ad1836f6f4beb9ef8c29dd2c8895
4
+ data.tar.gz: 169a250d73093090cbd99c4c9a4986314c1c4a731e49cb7a72b4573b11699c36
5
5
  SHA512:
6
- metadata.gz: 65778dd55afab7c03ac303d50c3ed910e5923e27e248db3dc845d268d5efa04a9cfbf90e2ecb0ac354fb90f82e9a0c1ff62203e525e399e8fba31c336f678385
7
- data.tar.gz: f0f3925f57c221789093f75432e0e7d3cbb8cc20f7a949545fa416eec666aced01718f25b40d0271fd4ab737394b1f75b7ba381dddbc18de9505c17123d4257d
6
+ metadata.gz: 721f79171057b1c7435313b41502a54d4d38898d5c9f0122ff7aa3b6e488ee44c2147c55e789ecb2a64c194d9b208ffedb19226443a60fd302aa003273b9d911
7
+ data.tar.gz: be15988b435f63831919364b61532939a57155014eb777735dbc8c686378d6c200af427383c4e5c24079460aa82440a5e6fe429af09ac6e75c1203663f42a407
@@ -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/
@@ -1,79 +1,56 @@
1
1
  name: Build and Test
2
2
 
3
- on: [push]
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - staging
8
+ - trying
9
+ - 'prepare-*'
10
+ pull_request:
11
+ branches:
12
+ - '**'
4
13
 
5
14
  jobs:
6
- # The `test` job.
7
15
  test:
8
- name: Test
16
+ name: Build and Test
9
17
 
10
18
  strategy:
11
19
  matrix:
12
- # The job runs on 2 different OS.
13
- os: [ubuntu-latest] # , macos-latest, removed temporarily
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
+
14
32
  # As soon as one job fails in the matrix, all the other
15
33
  # in-progress jobs are canceled.
16
- fail-fast: true
34
+ fail-fast: false
17
35
 
18
- runs-on: ${{ matrix.os }}
36
+ runs-on: ${{ matrix.target.os }}
19
37
 
20
38
  steps:
21
39
  - name: Check out code
22
40
  uses: actions/checkout@v2
23
41
 
24
42
  - name: Set up Rust
25
- shell: bash
26
- run: |
27
- curl https://sh.rustup.rs -sSf | sh -s -- -y
28
-
29
- - name: Cache Cargo registry
30
- uses: actions/cache@v1
43
+ uses: actions-rs/toolchain@v1
31
44
  with:
32
- path: ~/.cargo/registry
33
- key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
45
+ toolchain: ${{ matrix.target.rust-toolchain }}
46
+ default: true
47
+ override: true
48
+ target: ${{ matrix.target.target-name }}
34
49
 
35
- - name: Cache Cargo bin
36
- uses: actions/cache@v1
50
+ - name: Set up Ruby ${{ matrix.ruby }}
51
+ uses: ruby/setup-ruby@v1
37
52
  with:
38
- path: ~/.cargo/bin
39
- key: ${{ runner.os }}-cargo-bin-${{ hashFiles('**/Cargo.lock') }}
40
-
41
- - name: Cache Cargo build
42
- uses: actions/cache@v1
43
- with:
44
- path: target
45
- key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
46
-
47
- - name: Cache Ruby versions
48
- uses: actions/cache@v1
49
- with:
50
- path: ~/.rbenv/
51
- key: ${{ runner.os }}-rbenv-versions
52
-
53
- - name: Set up `rbenv` (with `rbenv-installer`)
54
- if: matrix.os == 'ubuntu-latest'
55
- shell: bash
56
- run: |
57
- export PATH="$HOME/.rbenv/bin:$PATH"
58
- export PATH="$HOME/.rbenv/shims:$PATH"
59
- sudo apt-get install -y libreadline-dev
60
- test -d $HOME/.rbenv/bin || curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash
61
- sudo apt-get install rubygems
62
-
63
- - name: Set up `rbenv` (with `brew`)
64
- if: matrix.os == 'macos-latest'
65
- shell: bash
66
- run: |
67
- export PATH="$HOME/.rbenv/bin:$PATH"
68
- export PATH="$HOME/.rbenv/shims:$PATH"
69
- test -d $HOME/.rbenv/bin || brew install rbenv
70
-
71
- - name: Set up Ruby
72
- shell: bash
73
- run: |
74
- export PATH="$HOME/.rbenv/bin:$PATH"
75
- export PATH="$HOME/.rbenv/shims:$PATH"
76
- test -d $HOME/.rbenv/versions/2.6.5/ || rbenv install 2.6.5
53
+ ruby-version: ${{ matrix.ruby }}
77
54
 
78
55
  - name: Set up just
79
56
  shell: bash
@@ -85,16 +62,12 @@ jobs:
85
62
  shell: bash
86
63
  run: |
87
64
  export PATH="$HOME/.cargo/bin:$PATH"
88
- export PATH="$HOME/.rbenv/versions/2.6.5/bin:$PATH"
89
- export GEM_HOME="$HOME/.gem"
90
65
  gem install rake
91
66
  gem install bundler
92
67
  just build
93
68
 
94
- - name: Run all the tests
69
+ - name: Run the tests
95
70
  shell: bash
96
71
  run: |
97
72
  export PATH="$HOME/.cargo/bin:$PATH"
98
- export PATH="$HOME/.rbenv/versions/2.6.5/bin:$PATH"
99
- export GEM_HOME="$HOME/.gem"
100
73
  just test
data/CHANGELOG.md CHANGED
@@ -5,18 +5,77 @@ All notable changes to this project will be documented in this file.
5
5
  ## Table of Contents
6
6
 
7
7
  * [Unreleased](#unreleased)
8
+ * [0.5.0](#050---2021-05-17)
8
9
  * [0.4.0](#040---2020-02-03)
9
10
  * [0.3.0](#030---2019-07-16)
10
11
  * [0.2.0](#020---2019-05-01)
11
12
 
12
13
  ## [Unreleased]
13
14
 
15
+ ## [0.5.0] - 2021-05-17
16
+
17
+ This is a full rewrite of the entire project. This version is a
18
+ candidate to become the 1.0 version.
19
+
20
+ We advise to take a look at:
21
+
22
+ * [the new documentation
23
+ online](https://wasmerio.github.io/wasmer-ruby/wasmer_ruby/index.html),
24
+ * [the collection of
25
+ examples](https://github.com/wasmerio/wasmer-ruby/tree/master/examples).
26
+
27
+ Shortly, here are the new types the extension provides:
28
+
29
+ * `Store`, which holds the engine, the compiler etc.
30
+ * `Module`, which represents a Wasm module, with `validate`, `new`,
31
+ `name=`, `name`, `exports`, `imports`, `custom_sections`,
32
+ `serialize` and `deserialize`,
33
+ * `Instance`, which represents a Wasm instance, with `new` and
34
+ `exports`,
35
+ * `Exports`, which represents a collection of exported entities, with
36
+ `respond_to_missing?`, `method_missing`, and `length`,
37
+ * `ImportObject`, which represents a collection of imports that will
38
+ be passed to `Instance`, with `new`, `contains_namespace`, and
39
+ `register`,
40
+ * `Function`, which represents an imported or exported function, with
41
+ `new`, `call` and `type`,
42
+ * `Memory`, which represents an imported or exported memory, with
43
+ `new`, `type`, `size`, `data_size`, `grow`, + memory views that
44
+ extends `Enumerable`,
45
+ * `Global`, which represents an imported or exported global, with
46
+ `new`, `mutable?`, `value`, `value=`, and `type`,
47
+ * `Table`, which represents an imported or exported table, with `new`
48
+ (small API for the moment),
49
+ * `Type`, `FunctionType`, `MemoryType`, `GlobalType` and `TableType`,
50
+ * `ExportType` and `ImportType`,
51
+ * `Value` which represents a Wasm value,
52
+ * `Wasi` module, which provides the `Version`, `StateBuilder` and
53
+ `Environment` classes.
54
+
55
+ ## Added
56
+
57
+ * Online documentation, with tested examples
58
+ ([#51](https://github.com/wasmerio/wasmer-ruby/pull/51) by [@Hywan])
59
+ * Tests run against Ruby 2.7 + 3.0, and against Linux + macOS
60
+ ([#49](https://github.com/wasmerio/wasmer-ruby/pull/49) by [@Hywan])
61
+
62
+ ## Changed
63
+
64
+ As we said, the extension has been fully rewritten, and the code is
65
+ likely to not be compatible anymore. Here are the most notable
66
+ patches:
67
+
68
+ * The big rewrite
69
+ ([#48](https://github.com/wasmerio/wasmer-ruby/pull/48) by [@Hywan])
70
+ * Remove Ruby dependency to `rutie`
71
+ ([#52](https://github.com/wasmerio/wasmer-ruby/pull/52) by [@Hywan])
72
+
14
73
  ## [0.4.0] - 2020-02-03
15
74
 
16
75
  ### Added
17
76
 
18
77
  * Support exported global variables
19
- ([#32](https://github.com/wasmerio/ruby-ext-wasm/pull/32) by
78
+ ([#32](https://github.com/wasmerio/wasmer-ruby/pull/32) by
20
79
  [@Hywan])
21
80
 
22
81
  ```ruby
@@ -32,34 +91,34 @@ All notable changes to this project will be documented in this file.
32
91
  ```
33
92
 
34
93
  * Support memory without an exported memory
35
- ([#31](https://github.com/wasmerio/ruby-ext-wasm/pull/31) by
94
+ ([#31](https://github.com/wasmerio/wasmer-ruby/pull/31) by
36
95
  [@Hywan])
37
96
 
38
97
  ### Changed
39
98
 
40
99
  * Set `@memory` to `nil` if none is exported
41
- ([#33](https://github.com/wasmerio/ruby-ext-wasm/pull/33) by
100
+ ([#33](https://github.com/wasmerio/wasmer-ruby/pull/33) by
42
101
  [@Hywan])
43
102
  * Migrate CI from CircleCI to Github Actions
44
- ([#28](https://github.com/wasmerio/ruby-ext-wasm/pull/28) by
103
+ ([#28](https://github.com/wasmerio/wasmer-ruby/pull/28) by
45
104
  [@Hywan])
46
105
  * Format code
47
- ([#26](https://github.com/wasmerio/ruby-ext-wasm/pull/26) by
106
+ ([#26](https://github.com/wasmerio/wasmer-ruby/pull/26) by
48
107
  [@Atul9])
49
108
  * Update Rutie to 0.7.0 (Rust) and 0.0.4 (Ruby)
50
- ([#23](https://github.com/wasmerio/ruby-ext-wasm/pull/23) by
109
+ ([#23](https://github.com/wasmerio/wasmer-ruby/pull/23) by
51
110
  [@Hywan])
52
111
  * Update Wasmer from 0.6.0 to 0.14.0
53
- ([#23](https://github.com/wasmerio/ruby-ext-wasm/pull/23),
54
- [#24](https://github.com/wasmerio/ruby-ext-wasm/pull/24),
55
- [#25](https://github.com/wasmerio/ruby-ext-wasm/pull/25),
56
- [#35](https://github.com/wasmerio/ruby-ext-wasm/pull/35),
112
+ ([#23](https://github.com/wasmerio/wasmer-ruby/pull/23),
113
+ [#24](https://github.com/wasmerio/wasmer-ruby/pull/24),
114
+ [#25](https://github.com/wasmerio/wasmer-ruby/pull/25),
115
+ [#35](https://github.com/wasmerio/wasmer-ruby/pull/35),
57
116
  by [@Hywan])
58
117
 
59
118
  ### Security
60
119
 
61
120
  * Update `rake` and other dependencies
62
- ([#36](https://github.com/wasmerio/ruby-ext-wasm/pull/36) by
121
+ ([#36](https://github.com/wasmerio/wasmer-ruby/pull/36) by
63
122
  [@Hywan])
64
123
 
65
124
  ## [0.3.0] - 2019-07-16
@@ -67,11 +126,11 @@ All notable changes to this project will be documented in this file.
67
126
  ### Added
68
127
 
69
128
  * Add the `Memory.grow` method
70
- ([#19](https://github.com/wasmerio/ruby-ext-wasm/pull/19) by
129
+ ([#19](https://github.com/wasmerio/wasmer-ruby/pull/19) by
71
130
  [@Hywan])
72
131
  * Typed arrays implement [the `Enumerable`
73
132
  mixin](https://docs.ruby-lang.org/en/2.6.0/Enumerable.html)
74
- ([#15](https://github.com/wasmerio/ruby-ext-wasm/pull/15) by
133
+ ([#15](https://github.com/wasmerio/wasmer-ruby/pull/15) by
75
134
  [@irxground])
76
135
 
77
136
  ```ruby
@@ -86,7 +145,7 @@ All notable changes to this project will be documented in this file.
86
145
  ```
87
146
  * Implement `instance.exports.respond_to?` to test whether an exported
88
147
  function exists
89
- ([#9](https://github.com/wasmerio/ruby-ext-wasm/pull/9) by
148
+ ([#9](https://github.com/wasmerio/wasmer-ruby/pull/9) by
90
149
  [@irxground])
91
150
 
92
151
  ```ruby
@@ -95,32 +154,32 @@ All notable changes to this project will be documented in this file.
95
154
  assert instance.exports.respond_to?(:foo)
96
155
  ```
97
156
  * Handle exported functions that return nothing, aka void functions
98
- ([#8](https://github.com/wasmerio/ruby-ext-wasm/pull/8) by [@Hywan])
157
+ ([#8](https://github.com/wasmerio/wasmer-ruby/pull/8) by [@Hywan])
99
158
  * Add the `greet` eaxmple
100
- ([#12](https://github.com/wasmerio/ruby-ext-wasm/pull/12) by
159
+ ([#12](https://github.com/wasmerio/wasmer-ruby/pull/12) by
101
160
  [@Hywan])
102
161
  * Set up Bors
103
- ([#10](https://github.com/wasmerio/ruby-ext-wasm/pull/10) by
162
+ ([#10](https://github.com/wasmerio/wasmer-ruby/pull/10) by
104
163
  [@Hywan])
105
164
 
106
165
  ### Changed
107
166
 
108
167
  * Improve Ruby exception raising
109
- ([#5](https://github.com/wasmerio/ruby-ext-wasm/pull/5) by
168
+ ([#5](https://github.com/wasmerio/wasmer-ruby/pull/5) by
110
169
  [@irxground])
111
170
  * Update Wasmer to 0.5.5
112
- ([#20](https://github.com/wasmerio/ruby-ext-wasm/pull/20) by
171
+ ([#20](https://github.com/wasmerio/wasmer-ruby/pull/20) by
113
172
  [@Hywan])
114
173
  * Update Wasmer to 0.4.2
115
- ([#11](https://github.com/wasmerio/ruby-ext-wasm/pull/11) by
174
+ ([#11](https://github.com/wasmerio/wasmer-ruby/pull/11) by
116
175
  [@Hywan])
117
176
  * Update Wasmer to 0.4.1
118
- ([#7](https://github.com/wasmerio/ruby-ext-wasm/pull/7) by [@Hywan])
177
+ ([#7](https://github.com/wasmerio/wasmer-ruby/pull/7) by [@Hywan])
119
178
  * Update Rutie
120
- ([#16](https://github.com/wasmerio/ruby-ext-wasm/pull/16) by
179
+ ([#16](https://github.com/wasmerio/wasmer-ruby/pull/16) by
121
180
  [@edvakf])
122
181
  * Move all symbols inside the `Wasmer` module
123
- ([#4](https://github.com/wasmerio/ruby-ext-wasm/pull/4) by
182
+ ([#4](https://github.com/wasmerio/wasmer-ruby/pull/4) by
124
183
  [@irxground])
125
184
 
126
185
  ```ruby
@@ -129,18 +188,19 @@ All notable changes to this project will be documented in this file.
129
188
  ```
130
189
 
131
190
  * Improve documentation
132
- ([#14](https://github.com/wasmerio/ruby-ext-wasm/pull/14) by
191
+ ([#14](https://github.com/wasmerio/wasmer-ruby/pull/14) by
133
192
  [@denniscollective])
134
193
  * Use `assert_nil` instead of `assert_equal_nil` in tests
135
- ([#13](https://github.com/wasmerio/ruby-ext-wasm/pull/13) by
194
+ ([#13](https://github.com/wasmerio/wasmer-ruby/pull/13) by
136
195
  [@Hywan])
137
196
 
138
197
  ## [0.2.0] - 2019-05-01
139
198
 
140
- [Unreleased]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.4.0...HEAD
141
- [0.4.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.3.0...0.4.0
142
- [0.3.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.2.0...0.3.0
143
- [0.2.0]: https://github.com/wasmerio/ruby-ext-wasm/compare/0.1.0...0.2.0
199
+ [Unreleased]: https://github.com/wasmerio/wasmer-ruby/compare/0.5.0...HEAD
200
+ [0.5.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.4.0...0.5.0
201
+ [0.4.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.3.0...0.4.0
202
+ [0.3.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.2.0...0.3.0
203
+ [0.2.0]: https://github.com/wasmerio/wasmer-ruby/compare/0.1.0...0.2.0
144
204
  [@Hywan]: https://github.com/Hywan
145
205
  [@irxground]: https://github.com/irxground
146
206
  [@edvakf]: https://github.com/edvakf
data/Cargo.lock CHANGED
@@ -1,752 +1,1184 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
+ version = 3
4
+
3
5
  [[package]]
4
- name = "arrayref"
5
- version = "0.3.6"
6
+ name = "addr2line"
7
+ version = "0.15.1"
6
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "03345e98af8f3d786b6d9f656ccfa6ac316d954e92bc4841f0bba20789d5fb5a"
10
+ dependencies = [
11
+ "gimli 0.24.0",
12
+ ]
7
13
 
8
14
  [[package]]
9
- name = "arrayvec"
10
- version = "0.5.1"
15
+ name = "adler"
16
+ version = "1.0.2"
11
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
20
+ [[package]]
21
+ name = "anyhow"
22
+ version = "1.0.40"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b"
12
25
 
13
26
  [[package]]
14
27
  name = "autocfg"
15
- version = "1.0.0"
28
+ version = "1.0.1"
16
29
  source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
17
31
 
18
32
  [[package]]
19
- name = "bincode"
20
- version = "1.2.1"
33
+ name = "backtrace"
34
+ version = "0.3.59"
21
35
  source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "4717cfcbfaa661a0fd48f8453951837ae7e8f81e481fbb136e3202d72805a744"
22
37
  dependencies = [
23
- "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
24
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
38
+ "addr2line",
39
+ "cc",
40
+ "cfg-if 1.0.0",
41
+ "libc",
42
+ "miniz_oxide",
43
+ "object 0.24.0",
44
+ "rustc-demangle",
25
45
  ]
26
46
 
27
47
  [[package]]
28
- name = "bitflags"
29
- version = "1.2.1"
48
+ name = "bincode"
49
+ version = "1.3.3"
30
50
  source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
52
+ dependencies = [
53
+ "serde",
54
+ ]
31
55
 
32
56
  [[package]]
33
- name = "blake3"
34
- version = "0.1.5"
57
+ name = "bitflags"
58
+ version = "1.2.1"
35
59
  source = "registry+https://github.com/rust-lang/crates.io-index"
36
- dependencies = [
37
- "arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
38
- "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
39
- "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
40
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
41
- "constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
42
- "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43
- "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
44
- ]
60
+ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
45
61
 
46
62
  [[package]]
47
63
  name = "byteorder"
48
- version = "1.3.4"
64
+ version = "1.4.3"
49
65
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
50
67
 
51
68
  [[package]]
52
69
  name = "cc"
53
- version = "1.0.50"
70
+ version = "1.0.67"
54
71
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
55
73
 
56
74
  [[package]]
57
75
  name = "cfg-if"
58
76
  version = "0.1.10"
59
77
  source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
60
79
 
61
80
  [[package]]
62
- name = "cloudabi"
63
- version = "0.0.3"
81
+ name = "cfg-if"
82
+ version = "1.0.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
85
+
86
+ [[package]]
87
+ name = "cranelift-bforest"
88
+ version = "0.68.0"
64
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "9221545c0507dc08a62b2d8b5ffe8e17ac580b0a74d1813b496b8d70b070fbd0"
65
91
  dependencies = [
66
- "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
92
+ "cranelift-entity",
67
93
  ]
68
94
 
69
95
  [[package]]
70
- name = "cmake"
71
- version = "0.1.42"
96
+ name = "cranelift-codegen"
97
+ version = "0.68.0"
72
98
  source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "7e9936ea608b6cd176f107037f6adbb4deac933466fc7231154f96598b2d3ab1"
73
100
  dependencies = [
74
- "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
101
+ "byteorder",
102
+ "cranelift-bforest",
103
+ "cranelift-codegen-meta",
104
+ "cranelift-codegen-shared",
105
+ "cranelift-entity",
106
+ "gimli 0.22.0",
107
+ "log",
108
+ "regalloc",
109
+ "smallvec",
110
+ "target-lexicon",
111
+ "thiserror",
75
112
  ]
76
113
 
77
114
  [[package]]
78
- name = "constant_time_eq"
79
- version = "0.1.5"
115
+ name = "cranelift-codegen-meta"
116
+ version = "0.68.0"
80
117
  source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "4ef2b2768568306540f4c8db3acce9105534d34c4a1e440529c1e702d7f8c8d7"
119
+ dependencies = [
120
+ "cranelift-codegen-shared",
121
+ "cranelift-entity",
122
+ ]
81
123
 
82
124
  [[package]]
83
- name = "cranelift-bforest"
84
- version = "0.52.0"
125
+ name = "cranelift-codegen-shared"
126
+ version = "0.68.0"
85
127
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "6759012d6d19c4caec95793f052613e9d4113e925e7f14154defbac0f1d4c938"
129
+
130
+ [[package]]
131
+ name = "cranelift-entity"
132
+ version = "0.68.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "86badbce14e15f52a45b666b38abe47b204969dd7f8fb7488cb55dd46b361fa6"
86
135
  dependencies = [
87
- "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
136
+ "serde",
88
137
  ]
89
138
 
90
139
  [[package]]
91
- name = "cranelift-codegen"
92
- version = "0.52.0"
140
+ name = "cranelift-frontend"
141
+ version = "0.68.0"
93
142
  source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "b608bb7656c554d0a4cf8f50c7a10b857e80306f6ff829ad6d468a7e2323c8d8"
94
144
  dependencies = [
95
- "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
96
- "cranelift-bforest 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
97
- "cranelift-codegen-meta 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
98
- "cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
99
- "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
100
- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
101
- "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
102
- "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
103
- "thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
145
+ "cranelift-codegen",
146
+ "log",
147
+ "smallvec",
148
+ "target-lexicon",
104
149
  ]
105
150
 
106
151
  [[package]]
107
- name = "cranelift-codegen-meta"
108
- version = "0.52.0"
152
+ name = "crc32fast"
153
+ version = "1.2.1"
109
154
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
110
156
  dependencies = [
111
- "cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
112
- "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
157
+ "cfg-if 1.0.0",
113
158
  ]
114
159
 
115
160
  [[package]]
116
- name = "cranelift-codegen-shared"
117
- version = "0.52.0"
161
+ name = "crossbeam-channel"
162
+ version = "0.5.1"
118
163
  source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
165
+ dependencies = [
166
+ "cfg-if 1.0.0",
167
+ "crossbeam-utils",
168
+ ]
119
169
 
120
170
  [[package]]
121
- name = "cranelift-entity"
122
- version = "0.52.0"
171
+ name = "crossbeam-deque"
172
+ version = "0.8.0"
123
173
  source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
175
+ dependencies = [
176
+ "cfg-if 1.0.0",
177
+ "crossbeam-epoch",
178
+ "crossbeam-utils",
179
+ ]
124
180
 
125
181
  [[package]]
126
- name = "cranelift-native"
127
- version = "0.52.0"
182
+ name = "crossbeam-epoch"
183
+ version = "0.9.4"
128
184
  source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "52fb27eab85b17fbb9f6fd667089e07d6a2eb8743d02639ee7f6a7a7729c9c94"
129
186
  dependencies = [
130
- "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
131
- "raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
132
- "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
187
+ "cfg-if 1.0.0",
188
+ "crossbeam-utils",
189
+ "lazy_static",
190
+ "memoffset",
191
+ "scopeguard",
133
192
  ]
134
193
 
135
194
  [[package]]
136
- name = "crossbeam-deque"
137
- version = "0.7.3"
195
+ name = "crossbeam-utils"
196
+ version = "0.8.4"
138
197
  source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "4feb231f0d4d6af81aed15928e58ecf5816aa62a2393e2c82f46973e92a9a278"
139
199
  dependencies = [
140
- "crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
141
- "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
142
- "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
200
+ "autocfg",
201
+ "cfg-if 1.0.0",
202
+ "lazy_static",
143
203
  ]
144
204
 
145
205
  [[package]]
146
- name = "crossbeam-epoch"
147
- version = "0.8.2"
206
+ name = "ctor"
207
+ version = "0.1.20"
148
208
  source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d"
149
210
  dependencies = [
150
- "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
151
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
152
- "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
153
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
154
- "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
155
- "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
156
- "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
211
+ "quote",
212
+ "syn",
157
213
  ]
158
214
 
159
215
  [[package]]
160
- name = "crossbeam-queue"
161
- version = "0.2.1"
216
+ name = "darling"
217
+ version = "0.12.4"
162
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c"
163
220
  dependencies = [
164
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
165
- "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
221
+ "darling_core",
222
+ "darling_macro",
166
223
  ]
167
224
 
168
225
  [[package]]
169
- name = "crossbeam-utils"
170
- version = "0.7.2"
226
+ name = "darling_core"
227
+ version = "0.12.4"
171
228
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36"
172
230
  dependencies = [
173
- "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
174
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
175
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
231
+ "fnv",
232
+ "ident_case",
233
+ "proc-macro2",
234
+ "quote",
235
+ "strsim",
236
+ "syn",
176
237
  ]
177
238
 
178
239
  [[package]]
179
- name = "crypto-mac"
180
- version = "0.7.0"
240
+ name = "darling_macro"
241
+ version = "0.12.4"
181
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a"
182
244
  dependencies = [
183
- "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
184
- "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
245
+ "darling_core",
246
+ "quote",
247
+ "syn",
185
248
  ]
186
249
 
187
250
  [[package]]
188
- name = "digest"
189
- version = "0.8.1"
251
+ name = "either"
252
+ version = "1.6.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
255
+
256
+ [[package]]
257
+ name = "enumset"
258
+ version = "1.0.6"
190
259
  source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "fbd795df6708a599abf1ee10eacc72efd052b7a5f70fdf0715e4d5151a6db9c3"
191
261
  dependencies = [
192
- "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
262
+ "enumset_derive",
193
263
  ]
194
264
 
195
265
  [[package]]
196
- name = "either"
197
- version = "1.5.3"
266
+ name = "enumset_derive"
267
+ version = "0.5.4"
198
268
  source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "e19c52f9ec503c8a68dc04daf71a04b07e690c32ab1a8b68e33897f255269d47"
270
+ dependencies = [
271
+ "darling",
272
+ "proc-macro2",
273
+ "quote",
274
+ "syn",
275
+ ]
199
276
 
200
277
  [[package]]
201
- name = "errno"
202
- version = "0.2.4"
278
+ name = "erased-serde"
279
+ version = "0.3.13"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "0465971a8cc1fa2455c8465aaa377131e1f1cf4983280f474a13e68793aa770c"
282
+ dependencies = [
283
+ "serde",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "fallible-iterator"
288
+ version = "0.2.0"
203
289
  source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
291
+
292
+ [[package]]
293
+ name = "fnv"
294
+ version = "1.0.7"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
297
+
298
+ [[package]]
299
+ name = "generational-arena"
300
+ version = "0.2.8"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "8e1d3b771574f62d0548cee0ad9057857e9fc25d7a3335f140c84f6acd0bf601"
204
303
  dependencies = [
205
- "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
206
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
207
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
304
+ "cfg-if 0.1.10",
305
+ "serde",
208
306
  ]
209
307
 
210
308
  [[package]]
211
- name = "errno-dragonfly"
212
- version = "0.1.1"
309
+ name = "getrandom"
310
+ version = "0.2.2"
213
311
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
214
313
  dependencies = [
215
- "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
216
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
314
+ "cfg-if 1.0.0",
315
+ "libc",
316
+ "wasi",
217
317
  ]
218
318
 
219
319
  [[package]]
220
- name = "gcc"
221
- version = "0.3.55"
320
+ name = "ghost"
321
+ version = "0.1.2"
222
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479"
324
+ dependencies = [
325
+ "proc-macro2",
326
+ "quote",
327
+ "syn",
328
+ ]
223
329
 
224
330
  [[package]]
225
- name = "generic-array"
226
- version = "0.12.3"
331
+ name = "gimli"
332
+ version = "0.22.0"
227
333
  source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
228
335
  dependencies = [
229
- "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
336
+ "fallible-iterator",
337
+ "indexmap",
338
+ "stable_deref_trait",
230
339
  ]
231
340
 
341
+ [[package]]
342
+ name = "gimli"
343
+ version = "0.24.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189"
346
+
347
+ [[package]]
348
+ name = "hashbrown"
349
+ version = "0.9.1"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
352
+
232
353
  [[package]]
233
354
  name = "hermit-abi"
234
- version = "0.1.8"
355
+ version = "0.1.18"
235
356
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
236
358
  dependencies = [
237
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
359
+ "libc",
238
360
  ]
239
361
 
240
362
  [[package]]
241
- name = "hex"
242
- version = "0.4.2"
363
+ name = "ident_case"
364
+ version = "1.0.1"
243
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
244
367
 
245
368
  [[package]]
246
369
  name = "indexmap"
247
- version = "1.3.2"
370
+ version = "1.6.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
373
+ dependencies = [
374
+ "autocfg",
375
+ "hashbrown",
376
+ "serde",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "inventory"
381
+ version = "0.1.10"
248
382
  source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f"
249
384
  dependencies = [
250
- "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
251
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
385
+ "ctor",
386
+ "ghost",
387
+ "inventory-impl",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "inventory-impl"
392
+ version = "0.1.10"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51"
395
+ dependencies = [
396
+ "proc-macro2",
397
+ "quote",
398
+ "syn",
252
399
  ]
253
400
 
254
401
  [[package]]
255
402
  name = "lazy_static"
256
403
  version = "1.4.0"
257
404
  source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
406
+
407
+ [[package]]
408
+ name = "leb128"
409
+ version = "0.2.4"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "3576a87f2ba00f6f106fdfcd16db1d698d648a26ad8e0573cad8537c3c362d2a"
258
412
 
259
413
  [[package]]
260
414
  name = "libc"
261
- version = "0.2.67"
415
+ version = "0.2.94"
262
416
  source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
263
418
 
264
419
  [[package]]
265
- name = "lock_api"
266
- version = "0.3.3"
420
+ name = "libloading"
421
+ version = "0.6.7"
267
422
  source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
268
424
  dependencies = [
269
- "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
425
+ "cfg-if 1.0.0",
426
+ "winapi",
270
427
  ]
271
428
 
272
429
  [[package]]
273
430
  name = "log"
274
- version = "0.4.8"
431
+ version = "0.4.14"
275
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
276
434
  dependencies = [
277
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
435
+ "cfg-if 1.0.0",
278
436
  ]
279
437
 
280
438
  [[package]]
281
- name = "maybe-uninit"
282
- version = "2.0.0"
439
+ name = "mach"
440
+ version = "0.3.2"
283
441
  source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
443
+ dependencies = [
444
+ "libc",
445
+ ]
284
446
 
285
447
  [[package]]
286
- name = "memmap"
287
- version = "0.7.0"
448
+ name = "memmap2"
449
+ version = "0.2.2"
288
450
  source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "397d1a6d6d0563c0f5462bbdae662cf6c784edf5e828e40c7257f85d82bf56dd"
289
452
  dependencies = [
290
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
291
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
453
+ "libc",
292
454
  ]
293
455
 
294
456
  [[package]]
295
457
  name = "memoffset"
296
- version = "0.5.3"
458
+ version = "0.6.3"
297
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "f83fb6581e8ed1f85fd45c116db8405483899489e38406156c25eb743554361d"
298
461
  dependencies = [
299
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
462
+ "autocfg",
300
463
  ]
301
464
 
302
465
  [[package]]
303
- name = "nix"
304
- version = "0.15.0"
466
+ name = "miniz_oxide"
467
+ version = "0.4.4"
305
468
  source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
306
470
  dependencies = [
307
- "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
308
- "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
309
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
310
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
311
- "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
471
+ "adler",
472
+ "autocfg",
312
473
  ]
313
474
 
475
+ [[package]]
476
+ name = "more-asserts"
477
+ version = "0.2.1"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"
480
+
314
481
  [[package]]
315
482
  name = "num_cpus"
316
- version = "1.12.0"
483
+ version = "1.13.0"
317
484
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
318
486
  dependencies = [
319
- "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
320
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
487
+ "hermit-abi",
488
+ "libc",
321
489
  ]
322
490
 
323
491
  [[package]]
324
- name = "page_size"
325
- version = "0.4.2"
492
+ name = "object"
493
+ version = "0.22.0"
326
494
  source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
327
496
  dependencies = [
328
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
329
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
497
+ "crc32fast",
498
+ "indexmap",
330
499
  ]
331
500
 
332
501
  [[package]]
333
- name = "parking_lot"
334
- version = "0.10.0"
502
+ name = "object"
503
+ version = "0.24.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "1a5b3dd1c072ee7963717671d1ca129f1048fda25edea6b752bfc71ac8854170"
506
+
507
+ [[package]]
508
+ name = "paste"
509
+ version = "1.0.5"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
512
+
513
+ [[package]]
514
+ name = "pin-project-lite"
515
+ version = "0.2.6"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
518
+
519
+ [[package]]
520
+ name = "ppv-lite86"
521
+ version = "0.2.10"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
524
+
525
+ [[package]]
526
+ name = "proc-macro-error"
527
+ version = "1.0.4"
335
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
336
530
  dependencies = [
337
- "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
338
- "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
531
+ "proc-macro-error-attr",
532
+ "proc-macro2",
533
+ "quote",
534
+ "syn",
535
+ "version_check",
339
536
  ]
340
537
 
341
538
  [[package]]
342
- name = "parking_lot_core"
343
- version = "0.7.0"
539
+ name = "proc-macro-error-attr"
540
+ version = "1.0.4"
344
541
  source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
345
543
  dependencies = [
346
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
347
- "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
348
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
349
- "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
350
- "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
351
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
544
+ "proc-macro2",
545
+ "quote",
546
+ "version_check",
352
547
  ]
353
548
 
354
549
  [[package]]
355
550
  name = "proc-macro2"
356
- version = "1.0.9"
551
+ version = "1.0.26"
357
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
358
554
  dependencies = [
359
- "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
555
+ "unicode-xid",
360
556
  ]
361
557
 
362
558
  [[package]]
363
559
  name = "quote"
364
- version = "1.0.2"
560
+ version = "1.0.9"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
563
+ dependencies = [
564
+ "proc-macro2",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "rand"
569
+ version = "0.8.3"
365
570
  source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
366
572
  dependencies = [
367
- "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
573
+ "libc",
574
+ "rand_chacha",
575
+ "rand_core",
576
+ "rand_hc",
368
577
  ]
369
578
 
370
579
  [[package]]
371
- name = "raw-cpuid"
372
- version = "7.0.3"
580
+ name = "rand_chacha"
581
+ version = "0.3.0"
373
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
374
584
  dependencies = [
375
- "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
376
- "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
377
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
585
+ "ppv-lite86",
586
+ "rand_core",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "rand_core"
591
+ version = "0.6.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
594
+ dependencies = [
595
+ "getrandom",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "rand_hc"
600
+ version = "0.3.0"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
603
+ dependencies = [
604
+ "rand_core",
378
605
  ]
379
606
 
380
607
  [[package]]
381
608
  name = "rayon"
382
- version = "1.3.0"
609
+ version = "1.5.0"
383
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
384
612
  dependencies = [
385
- "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
386
- "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
387
- "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
613
+ "autocfg",
614
+ "crossbeam-deque",
615
+ "either",
616
+ "rayon-core",
388
617
  ]
389
618
 
390
619
  [[package]]
391
620
  name = "rayon-core"
392
- version = "1.7.0"
621
+ version = "1.9.0"
393
622
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
394
624
  dependencies = [
395
- "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
396
- "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
397
- "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
398
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
399
- "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
625
+ "crossbeam-channel",
626
+ "crossbeam-deque",
627
+ "crossbeam-utils",
628
+ "lazy_static",
629
+ "num_cpus",
400
630
  ]
401
631
 
402
632
  [[package]]
403
633
  name = "redox_syscall"
404
- version = "0.1.56"
634
+ version = "0.2.8"
405
635
  source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
637
+ dependencies = [
638
+ "bitflags",
639
+ ]
406
640
 
407
641
  [[package]]
408
- name = "ruby-ext-wasm"
409
- version = "0.4.0"
642
+ name = "regalloc"
643
+ version = "0.0.31"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "571f7f397d61c4755285cd37853fe8e03271c243424a907415909379659381c5"
410
646
  dependencies = [
411
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
412
- "rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
413
- "wasmer-runtime 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
647
+ "log",
648
+ "rustc-hash",
649
+ "smallvec",
414
650
  ]
415
651
 
416
652
  [[package]]
417
- name = "rustc_version"
418
- version = "0.2.3"
653
+ name = "region"
654
+ version = "2.2.0"
419
655
  source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0"
420
657
  dependencies = [
421
- "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
658
+ "bitflags",
659
+ "libc",
660
+ "mach",
661
+ "winapi",
422
662
  ]
423
663
 
424
664
  [[package]]
425
- name = "rutie"
426
- version = "0.7.0"
665
+ name = "remove_dir_all"
666
+ version = "0.5.3"
427
667
  source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
428
669
  dependencies = [
429
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
430
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
670
+ "winapi",
431
671
  ]
432
672
 
433
673
  [[package]]
434
- name = "scopeguard"
674
+ name = "rustc-demangle"
675
+ version = "0.1.19"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "410f7acf3cb3a44527c5d9546bad4bf4e6c460915d5f9f2fc524498bfe8f70ce"
678
+
679
+ [[package]]
680
+ name = "rustc-hash"
435
681
  version = "1.1.0"
436
682
  source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
437
684
 
438
685
  [[package]]
439
- name = "semver"
440
- version = "0.9.0"
686
+ name = "rutie"
687
+ version = "0.8.2"
441
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "678217ed742ca819057a79c0146703d1278afbb38896eb0283c410a6cab7c28c"
442
690
  dependencies = [
443
- "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
691
+ "lazy_static",
692
+ "libc",
444
693
  ]
445
694
 
446
695
  [[package]]
447
- name = "semver-parser"
448
- version = "0.7.0"
449
- source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ name = "rutie-derive"
697
+ version = "0.1.0"
698
+ dependencies = [
699
+ "rutie",
700
+ "rutie-derive-macros",
701
+ ]
450
702
 
451
703
  [[package]]
452
- name = "serde"
453
- version = "1.0.104"
704
+ name = "rutie-derive-macros"
705
+ version = "0.1.0"
706
+ dependencies = [
707
+ "paste",
708
+ "proc-macro2",
709
+ "quote",
710
+ "syn",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "rutie-test"
715
+ version = "0.1.0"
716
+
717
+ [[package]]
718
+ name = "scopeguard"
719
+ version = "1.1.0"
454
720
  source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
455
722
 
456
723
  [[package]]
457
- name = "serde-bench"
458
- version = "0.0.7"
724
+ name = "serde"
725
+ version = "1.0.125"
459
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
460
728
  dependencies = [
461
- "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
462
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
729
+ "serde_derive",
463
730
  ]
464
731
 
465
732
  [[package]]
466
733
  name = "serde_bytes"
467
- version = "0.11.3"
734
+ version = "0.11.5"
468
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
469
737
  dependencies = [
470
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
738
+ "serde",
471
739
  ]
472
740
 
473
741
  [[package]]
474
742
  name = "serde_derive"
475
- version = "1.0.104"
743
+ version = "1.0.125"
476
744
  source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
477
746
  dependencies = [
478
- "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
479
- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
480
- "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
747
+ "proc-macro2",
748
+ "quote",
749
+ "syn",
481
750
  ]
482
751
 
483
752
  [[package]]
484
753
  name = "smallvec"
485
- version = "0.6.13"
754
+ version = "1.6.1"
486
755
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
- dependencies = [
488
- "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
489
- ]
756
+ checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
490
757
 
491
758
  [[package]]
492
- name = "smallvec"
759
+ name = "stable_deref_trait"
493
760
  version = "1.2.0"
494
761
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
495
763
 
496
764
  [[package]]
497
- name = "subtle"
498
- version = "1.0.0"
765
+ name = "strsim"
766
+ version = "0.10.0"
499
767
  source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
500
769
 
501
770
  [[package]]
502
771
  name = "syn"
503
- version = "1.0.16"
772
+ version = "1.0.72"
504
773
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
505
775
  dependencies = [
506
- "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
507
- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
508
- "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
776
+ "proc-macro2",
777
+ "quote",
778
+ "unicode-xid",
509
779
  ]
510
780
 
511
781
  [[package]]
512
782
  name = "target-lexicon"
513
- version = "0.9.0"
783
+ version = "0.11.2"
514
784
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "422045212ea98508ae3d28025bc5aaa2bd4a9cdaecd442a08da2ee620ee9ea95"
786
+
787
+ [[package]]
788
+ name = "tempfile"
789
+ version = "3.2.0"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
792
+ dependencies = [
793
+ "cfg-if 1.0.0",
794
+ "libc",
795
+ "rand",
796
+ "redox_syscall",
797
+ "remove_dir_all",
798
+ "winapi",
799
+ ]
515
800
 
516
801
  [[package]]
517
802
  name = "thiserror"
518
- version = "1.0.11"
803
+ version = "1.0.24"
519
804
  source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e"
520
806
  dependencies = [
521
- "thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
807
+ "thiserror-impl",
522
808
  ]
523
809
 
524
810
  [[package]]
525
811
  name = "thiserror-impl"
526
- version = "1.0.11"
812
+ version = "1.0.24"
527
813
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0"
528
815
  dependencies = [
529
- "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
530
- "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
531
- "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
816
+ "proc-macro2",
817
+ "quote",
818
+ "syn",
532
819
  ]
533
820
 
534
821
  [[package]]
535
- name = "typenum"
536
- version = "1.11.2"
822
+ name = "time"
823
+ version = "0.1.43"
537
824
  source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
826
+ dependencies = [
827
+ "libc",
828
+ "winapi",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "tracing"
833
+ version = "0.1.26"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
836
+ dependencies = [
837
+ "cfg-if 1.0.0",
838
+ "log",
839
+ "pin-project-lite",
840
+ "tracing-attributes",
841
+ "tracing-core",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "tracing-attributes"
846
+ version = "0.1.15"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2"
849
+ dependencies = [
850
+ "proc-macro2",
851
+ "quote",
852
+ "syn",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "tracing-core"
857
+ version = "0.1.18"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
860
+ dependencies = [
861
+ "lazy_static",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "typetag"
866
+ version = "0.1.7"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "422619e1a7299befb977a1f6d8932c499f6151dbcafae715193570860cae8f07"
869
+ dependencies = [
870
+ "erased-serde",
871
+ "inventory",
872
+ "lazy_static",
873
+ "serde",
874
+ "typetag-impl",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "typetag-impl"
879
+ version = "0.1.7"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "504f9626fe6cc1c376227864781996668e15c1ff251d222f63ef17f310bf1fec"
882
+ dependencies = [
883
+ "proc-macro2",
884
+ "quote",
885
+ "syn",
886
+ ]
538
887
 
539
888
  [[package]]
540
889
  name = "unicode-xid"
541
- version = "0.2.0"
890
+ version = "0.2.2"
542
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
543
893
 
544
894
  [[package]]
545
- name = "void"
895
+ name = "version_check"
896
+ version = "0.9.3"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
899
+
900
+ [[package]]
901
+ name = "wasi"
902
+ version = "0.10.2+wasi-snapshot-preview1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
905
+
906
+ [[package]]
907
+ name = "wasmer"
908
+ version = "1.0.0"
909
+ dependencies = [
910
+ "lazy_static",
911
+ "rutie",
912
+ "rutie-derive",
913
+ "rutie-test",
914
+ "wasmer 1.0.2",
915
+ "wasmer-wasi",
916
+ "wasmprinter",
917
+ "wat",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "wasmer"
922
+ version = "1.0.2"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "a70cfae554988d904d64ca17ab0e7cd652ee5c8a0807094819c1ea93eb9d6866"
925
+ dependencies = [
926
+ "cfg-if 0.1.10",
927
+ "indexmap",
928
+ "more-asserts",
929
+ "target-lexicon",
930
+ "thiserror",
931
+ "wasmer-compiler",
932
+ "wasmer-compiler-cranelift",
933
+ "wasmer-derive",
934
+ "wasmer-engine",
935
+ "wasmer-engine-jit",
936
+ "wasmer-engine-native",
937
+ "wasmer-types",
938
+ "wasmer-vm",
939
+ "wat",
940
+ "winapi",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "wasmer-compiler"
945
+ version = "1.0.2"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "6b7732a9cab472bd921d5a0c422f45b3d03f62fa2c40a89e0770cef6d47e383e"
948
+ dependencies = [
949
+ "enumset",
950
+ "serde",
951
+ "serde_bytes",
952
+ "smallvec",
953
+ "target-lexicon",
954
+ "thiserror",
955
+ "wasmer-types",
956
+ "wasmer-vm",
957
+ "wasmparser 0.65.0",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "wasmer-compiler-cranelift"
962
+ version = "1.0.2"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "48cb9395f094e1d81534f4c5e330ed4cdb424e8df870d29ad585620284f5fddb"
965
+ dependencies = [
966
+ "cranelift-codegen",
967
+ "cranelift-frontend",
968
+ "gimli 0.22.0",
969
+ "more-asserts",
970
+ "rayon",
971
+ "serde",
972
+ "smallvec",
973
+ "tracing",
974
+ "wasmer-compiler",
975
+ "wasmer-types",
976
+ "wasmer-vm",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "wasmer-derive"
981
+ version = "1.0.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "d8b86dcd2c3efdb8390728a2b56f762db07789aaa5aa872a9dc776ba3a7912ed"
984
+ dependencies = [
985
+ "proc-macro-error",
986
+ "proc-macro2",
987
+ "quote",
988
+ "syn",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "wasmer-engine"
546
993
  version = "1.0.2"
547
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "efe4667d6bd888f26ae8062a63a9379fa697415b4b4e380f33832e8418fd71b5"
996
+ dependencies = [
997
+ "backtrace",
998
+ "bincode",
999
+ "lazy_static",
1000
+ "memmap2",
1001
+ "more-asserts",
1002
+ "rustc-demangle",
1003
+ "serde",
1004
+ "serde_bytes",
1005
+ "target-lexicon",
1006
+ "thiserror",
1007
+ "wasmer-compiler",
1008
+ "wasmer-types",
1009
+ "wasmer-vm",
1010
+ ]
548
1011
 
549
1012
  [[package]]
550
- name = "wasmer-clif-backend"
551
- version = "0.14.1"
1013
+ name = "wasmer-engine-jit"
1014
+ version = "1.0.2"
552
1015
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "26770be802888011b4a3072f2a282fc2faa68aa48c71b3db6252a3937a85f3da"
553
1017
  dependencies = [
554
- "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
555
- "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
556
- "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
557
- "cranelift-native 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
558
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
559
- "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
560
- "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
561
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
562
- "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
563
- "serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
564
- "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
565
- "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
566
- "wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
567
- "wasmer-clif-fork-wasm 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
568
- "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
569
- "wasmer-win-exception-handler 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
570
- "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
571
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1018
+ "bincode",
1019
+ "cfg-if 0.1.10",
1020
+ "region",
1021
+ "serde",
1022
+ "serde_bytes",
1023
+ "wasmer-compiler",
1024
+ "wasmer-engine",
1025
+ "wasmer-types",
1026
+ "wasmer-vm",
1027
+ "winapi",
572
1028
  ]
573
1029
 
574
1030
  [[package]]
575
- name = "wasmer-clif-fork-frontend"
576
- version = "0.52.0"
1031
+ name = "wasmer-engine-native"
1032
+ version = "1.0.2"
577
1033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "2bb4083a6c69f2cd4b000b82a80717f37c6cc2e536aee3a8ffe9af3edc276a8b"
578
1035
  dependencies = [
579
- "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
580
- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
581
- "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
582
- "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
1036
+ "bincode",
1037
+ "cfg-if 0.1.10",
1038
+ "leb128",
1039
+ "libloading",
1040
+ "serde",
1041
+ "tempfile",
1042
+ "tracing",
1043
+ "wasmer-compiler",
1044
+ "wasmer-engine",
1045
+ "wasmer-object",
1046
+ "wasmer-types",
1047
+ "wasmer-vm",
1048
+ "which",
583
1049
  ]
584
1050
 
585
1051
  [[package]]
586
- name = "wasmer-clif-fork-wasm"
587
- version = "0.52.0"
1052
+ name = "wasmer-object"
1053
+ version = "1.0.2"
588
1054
  source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "abf8e0c12b82ff81ebecd30d7e118be5fec871d6de885a90eeb105df0a769a7b"
589
1056
  dependencies = [
590
- "cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
591
- "cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
592
- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
593
- "thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
594
- "wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)",
595
- "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
1057
+ "object 0.22.0",
1058
+ "thiserror",
1059
+ "wasmer-compiler",
1060
+ "wasmer-types",
596
1061
  ]
597
1062
 
598
1063
  [[package]]
599
- name = "wasmer-runtime"
600
- version = "0.14.1"
1064
+ name = "wasmer-types"
1065
+ version = "1.0.2"
601
1066
  source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "c7f4ac28c2951cd792c18332f03da523ed06b170f5cf6bb5b1bdd7e36c2a8218"
602
1068
  dependencies = [
603
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
604
- "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
605
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
606
- "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
607
- "wasmer-clif-backend 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
608
- "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
1069
+ "cranelift-entity",
1070
+ "serde",
1071
+ "thiserror",
609
1072
  ]
610
1073
 
611
1074
  [[package]]
612
- name = "wasmer-runtime-core"
613
- version = "0.14.1"
1075
+ name = "wasmer-vm"
1076
+ version = "1.0.2"
614
1077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "a7635ba0b6d2fd325f588d69a950ad9fa04dddbf6ad08b6b2a183146319bf6ae"
615
1079
  dependencies = [
616
- "bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
617
- "blake3 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
618
- "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
619
- "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
620
- "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
621
- "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
622
- "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
623
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
624
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
625
- "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
626
- "page_size 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
627
- "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
628
- "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
629
- "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
630
- "serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
631
- "serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
632
- "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
633
- "smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
634
- "wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)",
635
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1080
+ "backtrace",
1081
+ "cc",
1082
+ "cfg-if 0.1.10",
1083
+ "indexmap",
1084
+ "libc",
1085
+ "memoffset",
1086
+ "more-asserts",
1087
+ "region",
1088
+ "serde",
1089
+ "thiserror",
1090
+ "wasmer-types",
1091
+ "winapi",
636
1092
  ]
637
1093
 
638
1094
  [[package]]
639
- name = "wasmer-win-exception-handler"
640
- version = "0.14.1"
1095
+ name = "wasmer-wasi"
1096
+ version = "1.0.2"
641
1097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "aaf3ec2503b6b12034cf066deb923805952f821223b881acb746df83e284c03e"
642
1099
  dependencies = [
643
- "cmake 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
644
- "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
645
- "wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
646
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
1100
+ "bincode",
1101
+ "byteorder",
1102
+ "generational-arena",
1103
+ "getrandom",
1104
+ "libc",
1105
+ "serde",
1106
+ "thiserror",
1107
+ "time",
1108
+ "tracing",
1109
+ "typetag",
1110
+ "wasmer 1.0.2",
1111
+ "winapi",
647
1112
  ]
648
1113
 
649
1114
  [[package]]
650
1115
  name = "wasmparser"
651
- version = "0.45.2"
1116
+ version = "0.65.0"
652
1117
  source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "87cc2fe6350834b4e528ba0901e7aa405d78b89dc1fa3145359eb4de0e323fcf"
1119
+
1120
+ [[package]]
1121
+ name = "wasmparser"
1122
+ version = "0.78.0"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "6c7a8b20306d43c09c2c34e0ef68bf2959a11b01a5cae35e4c5dc1e7145547b6"
1125
+
1126
+ [[package]]
1127
+ name = "wasmprinter"
1128
+ version = "0.2.26"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "2ccec894c70710c2e4669320a532cb2b9cfb97adb0429745642f8ce76916ed85"
1131
+ dependencies = [
1132
+ "anyhow",
1133
+ "wasmparser 0.78.0",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "wast"
1138
+ version = "35.0.2"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
1141
+ dependencies = [
1142
+ "leb128",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "wat"
1147
+ version = "1.0.37"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "8ec280a739b69173e0ffd12c1658507996836ba4e992ed9bc1e5385a0bd72a02"
1150
+ dependencies = [
1151
+ "wast",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "which"
1156
+ version = "4.1.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
1159
+ dependencies = [
1160
+ "either",
1161
+ "libc",
1162
+ ]
653
1163
 
654
1164
  [[package]]
655
1165
  name = "winapi"
656
- version = "0.3.8"
1166
+ version = "0.3.9"
657
1167
  source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
658
1169
  dependencies = [
659
- "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
660
- "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1170
+ "winapi-i686-pc-windows-gnu",
1171
+ "winapi-x86_64-pc-windows-gnu",
661
1172
  ]
662
1173
 
663
1174
  [[package]]
664
1175
  name = "winapi-i686-pc-windows-gnu"
665
1176
  version = "0.4.0"
666
1177
  source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
667
1179
 
668
1180
  [[package]]
669
1181
  name = "winapi-x86_64-pc-windows-gnu"
670
1182
  version = "0.4.0"
671
1183
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
-
673
- [metadata]
674
- "checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
675
- "checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
676
- "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
677
- "checksum bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
678
- "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
679
- "checksum blake3 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46080006c1505f12f64dd2a09264b343381ed3190fa02c8005d5d662ac571c63"
680
- "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
681
- "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
682
- "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
683
- "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
684
- "checksum cmake 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "81fb25b677f8bf1eb325017cb6bb8452f87969db0fedb4f757b297bee78a7c62"
685
- "checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
686
- "checksum cranelift-bforest 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "56aa72ef104c5d634f2f9e84ef2c47e116c1d185fae13f196b97ca84b0a514f1"
687
- "checksum cranelift-codegen 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "460b9d20793543599308d22f5a1172c196e63a780c4e9aacb0b3f4f63d63ffe1"
688
- "checksum cranelift-codegen-meta 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc70e4e8ccebd53a4f925147def857c9e9f7fe0fdbef4bb645a420473e012f50"
689
- "checksum cranelift-codegen-shared 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3992000be4d18df0fe332b7c42c120de896e8ec54cd7b6cfa050910a8c9f6e2f"
690
- "checksum cranelift-entity 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "722957e05064d97a3157bf0976deed0f3e8ee4f8a4ce167a7c724ca63a4e8bd9"
691
- "checksum cranelift-native 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "21398a0bc6ba389ea86964ac4a495426dd61080f2ddd306184777a8560fe9976"
692
- "checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
693
- "checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
694
- "checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
695
- "checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
696
- "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
697
- "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
698
- "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
699
- "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
700
- "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
701
- "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
702
- "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
703
- "checksum hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
704
- "checksum hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
705
- "checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
706
- "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
707
- "checksum libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)" = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
708
- "checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
709
- "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
710
- "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
711
- "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
712
- "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9"
713
- "checksum nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229"
714
- "checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
715
- "checksum page_size 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd"
716
- "checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc"
717
- "checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1"
718
- "checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
719
- "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
720
- "checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf"
721
- "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
722
- "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
723
- "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
724
- "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
725
- "checksum rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "99a4174504679e66c524ffd839767eeca900d8c2e332ecf8bc6b9f15a5b8e5b1"
726
- "checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
727
- "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
728
- "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
729
- "checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
730
- "checksum serde-bench 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "d733da87e79faaac25616e33d26299a41143fd4cd42746cbb0e91d8feea243fd"
731
- "checksum serde_bytes 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "325a073952621257820e7a3469f55ba4726d8b28657e7e36653d1c36dc2c84ae"
732
- "checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
733
- "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
734
- "checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
735
- "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
736
- "checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
737
- "checksum target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4c118a7a38378f305a9e111fcb2f7f838c0be324bfb31a77ea04f7f6e684b4"
738
- "checksum thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ee14bf8e6767ab4c687c9e8bc003879e042a96fd67a3ba5934eadb6536bef4db"
739
- "checksum thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "a7b51e1fbc44b5a0840be594fbc0f960be09050f2617e61e6aa43bef97cd3ef4"
740
- "checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9"
741
- "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
742
- "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
743
- "checksum wasmer-clif-backend 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ea74b659f78bffcc2db4bd77bf27ce66907ab76728d012346b130fe384e11399"
744
- "checksum wasmer-clif-fork-frontend 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2e13201ef9ef527ad30a6bf1b08e3e024a40cf2731f393d80375dc88506207"
745
- "checksum wasmer-clif-fork-wasm 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a8b09302cc4fdc4efc03823cb3e1880b0fde578ba43f27ddd212811cb28c1530"
746
- "checksum wasmer-runtime 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4a005e93916e9c4d6bb67fd301b4840fa3994be01806659fc94a72a85386550e"
747
- "checksum wasmer-runtime-core 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "af29c21b4b17c90035dc5bc6a4dcf018b16acfd745631c905f2a7f04e3e2c74e"
748
- "checksum wasmer-win-exception-handler 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8e5ede589f678bb6c061e173394506589fd2bae9165d841b218c5d07b3082cd4"
749
- "checksum wasmparser 0.45.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8b4eab1d9971d0803729cba3617b56eb04fcb4bd25361cb63880ed41a42f20d5"
750
- "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
751
- "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
752
- "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1184
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"