changed
CHANGELOG.md
|
@@ -14,33 +14,49 @@ Types of changes
|
14
14
|
- `Fixed` for any bug fixes.
|
15
15
|
- `Security` in case of vulnerabilities.
|
16
16
|
|
17
|
- ## unreleased
|
17
|
+ ## [0.9.0 - 2024-07-25]
|
18
18
|
|
19
|
- put your changes here
|
19
|
+ Wasmtime rewrote their fuel-related API and simplified it. To remain consistent with Wasmtime, we follow this change in this release. A Wasmex `Store` now only implements `set_fuel/2` and `get_fuel/1`. All other methods are removed with this release.
|
20
20
|
|
21
|
- ## [0.8.4] - 2023-06-??
|
21
|
+ The underlying implementation of the fuel system got rewritten as well. If you are using fuel in your app,
|
22
|
+ please check your fuel consumption values.
|
22
23
|
|
23
24
|
### Added
|
24
25
|
|
25
|
- * added support for multi-value returns from WASM and elixir callbacks. This enables passing string return values safely by pointer and length, for example.
|
26
|
+ - official support for Elixir 1.15 and 1.16
|
27
|
+ - fuel-related API got rewritten, because the underlying Wasm library (wasmtime) changed their API and we want to be consistent. Added `Store.get_fuel/1` and `Store.set_fuel/2` which is a much simpler API than before.
|
28
|
+ - read and write a global’s value with `Instance.get_global_value/3` and `Instance.set_global_value/4` ([#540](https://github.com/tessi/wasmex/pull/540))
|
29
|
+ - ability to dynamically link wasm modules ([#596](https://github.com/tessi/wasmex/pull/596)) thanks @munjalpatel
|
30
|
+ - ability to use 128 bit unsigned integers (wasm type `V128`)
|
31
|
+ - added support for multi-value returns from WASM and elixir callbacks. This enables passing string return values safely by pointer and length, for example.
|
32
|
+
|
33
|
+ ### Removed
|
34
|
+
|
35
|
+ - removed support for Elixir 1.12
|
36
|
+ - with the fuel-related API changed, the existing methods on `Store` (`consume_fuel`, `fuel_remaining`, `add_fuel`) were removed. Please call `set_fuel/2` and `get_fuel/1` instead.
|
37
|
+
|
38
|
+ ### Changed
|
39
|
+
|
40
|
+ - Dependency updates (most notably wasmtime and rustler) - thanks @RoyalIcing and @scrogson
|
41
|
+ - removed dialyzer
|
26
42
|
|
27
43
|
## [0.8.3] - 2023-05-24
|
28
44
|
|
29
45
|
### Added
|
30
46
|
|
31
|
- * added support for `riscv64gc-unknown-linux-gnu`
|
32
|
- * added support for OTP 26
|
47
|
+ - added support for `riscv64gc-unknown-linux-gnu`
|
48
|
+ - added support for OTP 26
|
33
49
|
|
34
50
|
### Changed
|
35
51
|
|
36
|
- * updated rustler from 0.27.0 to 0.28.0
|
37
|
- * updated wasmtime from 4.0.1 to 9.0.1
|
52
|
+ - updated rustler from 0.27.0 to 0.28.0
|
53
|
+ - updated wasmtime from 4.0.1 to 9.0.1
|
38
54
|
|
39
55
|
## [0.8.2] - 2023-01-08
|
40
56
|
|
41
57
|
## Added
|
42
58
|
|
43
|
- * list `aarch64-unknown-linux-musl` in rustler targets, so we actually include it in our releases
|
59
|
+ - list `aarch64-unknown-linux-musl` in rustler targets, so we actually include it in our releases
|
44
60
|
|
45
61
|
## [0.8.1] - 2023-01-08
|
46
62
|
|
|
@@ -55,22 +71,21 @@ Today, a `Wasmex.Engine` already gives us a faster way to precompile modules wit
|
55
71
|
|
56
72
|
### Added
|
57
73
|
|
58
|
- * Added precompiled binary for `aarch64-unknown-linux-musl`
|
59
|
- * Added support for setting store limits. This allows users to limit memory usage, instance creation, table sizes and more. See `Wasmex.StoreLimits` for details.
|
60
|
- * Added support for metering/fuel_consumption. This allows users to limit CPU usage. A `Wasmex.Store` can be given fuel, where each Wasm instruction of a running Wasm binary uses a certain amount of fuel. If no fuel remains, execution stops. See `Wasmex.EngineConfig` for details.
|
61
|
- * Added `Wasmex.EngineConfig` as a place for more complex Wasm settings. With this release an engine can be configured to provide more detailed backtraces on errors during Wasm execution by setting the `wasm_backtrace_details` flag.
|
62
|
- * Added `Wasmex.Engine.precompile_module/2` which allows module precompilation from a .wat or .wasm binary without the need to instantiate said module. A precompiled module can be hydrated with `Module.unsafe_deserialize/2`.
|
63
|
- * Added `Wasmex.module/1` and `Wasmex.store/1` to access the module and store of a running Wasmex GenServer process.
|
64
|
- * Added option to `Wasmex.EngineConfig` to configure the `cranelift_opt_level` (:none, :speed, :speed_and_size) allowing users to trade compilation time against execution speed
|
74
|
+ - Added precompiled binary for `aarch64-unknown-linux-musl`
|
75
|
+ - Added support for setting store limits. This allows users to limit memory usage, instance creation, table sizes and more. See `Wasmex.StoreLimits` for details.
|
76
|
+ - Added support for metering/fuel_consumption. This allows users to limit CPU usage. A `Wasmex.Store` can be given fuel, where each Wasm instruction of a running Wasm binary uses a certain amount of fuel. If no fuel remains, execution stops. See `Wasmex.EngineConfig` for details.
|
77
|
+ - Added `Wasmex.EngineConfig` as a place for more complex Wasm settings. With this release an engine can be configured to provide more detailed backtraces on errors during Wasm execution by setting the `wasm_backtrace_details` flag.
|
78
|
+ - Added `Wasmex.Engine.precompile_module/2` which allows module precompilation from a .wat or .wasm binary without the need to instantiate said module. A precompiled module can be hydrated with `Module.unsafe_deserialize/2`.
|
79
|
+ - Added `Wasmex.module/1` and `Wasmex.store/1` to access the module and store of a running Wasmex GenServer process.
|
80
|
+ - Added option to `Wasmex.EngineConfig` to configure the `cranelift_opt_level` (:none, :speed, :speed_and_size) allowing users to trade compilation time against execution speed
|
65
81
|
|
66
82
|
### Changed
|
67
83
|
|
68
|
- * `mix.exs` now also requires at least Elixir 1.12
|
69
|
- * `Module.unsafe_deserialize/2` now accepts a `Wasmex.Engine` in addition to the serialized module binary. It's best to hydrate a module using the same engine config used to serialize or precompile it. It has no harsh consequences today, but will be important when we add more Wasm features (e.g. SIMD support) in the future.
|
70
|
- * added typespecs for all public `Wasmex` methods
|
71
|
- * improved documentation and typespecs
|
72
|
- * allow starting the `Wasmex` GenServer with a `%{bytes: bytes, store: store}` map as a convenience to spare users the task of manually compiling a `Wasmex.Module`
|
73
|
-
|
84
|
+ - `mix.exs` now also requires at least Elixir 1.12
|
85
|
+ - `Module.unsafe_deserialize/2` now accepts a `Wasmex.Engine` in addition to the serialized module binary. It's best to hydrate a module using the same engine config used to serialize or precompile it. It has no harsh consequences today, but will be important when we add more Wasm features (e.g. SIMD support) in the future.
|
86
|
+ - added typespecs for all public `Wasmex` methods
|
87
|
+ - improved documentation and typespecs
|
88
|
+ - allow starting the `Wasmex` GenServer with a `%{bytes: bytes, store: store}` map as a convenience to spare users the task of manually compiling a `Wasmex.Module`
|
74
89
|
|
75
90
|
## [0.8.0] - 2023-01-03
|
76
91
|
|
|
@@ -88,30 +103,30 @@ Please visit the list of changes below for more details.
|
88
103
|
|
89
104
|
### Added
|
90
105
|
|
91
|
- * Added support for OTP 25
|
92
|
- * Added support for Elixir 1.14
|
106
|
+ - Added support for OTP 25
|
107
|
+ - Added support for Elixir 1.14
|
93
108
|
|
94
109
|
### Removed
|
95
110
|
|
96
|
- * Removed official support for OTP 22 and 23
|
97
|
- * Removed official support for Elixir 1.12
|
98
|
- * Removed `Wasmex.Module.set_name()` without replacement as this is not supported by Wasmtime
|
99
|
- * Removed `Wasmex.Memory.bytes_per_element()` without replacement because we dropped support for different data types and now only handle bytes
|
100
|
- * Removed `Wasmex.Pipe.set_len()` without replacement
|
101
|
- * WASI directory/file preopens can not configure read/write/create permissions anymore because wasmtime does not support this feature well. We very much plan to add support back [once wasmtime allows](https://github.com/bytecodealliance/wasmtime/issues/4273).
|
111
|
+ - Removed official support for OTP 22 and 23
|
112
|
+ - Removed official support for Elixir 1.12
|
113
|
+ - Removed `Wasmex.Module.set_name()` without replacement as this is not supported by Wasmtime
|
114
|
+ - Removed `Wasmex.Memory.bytes_per_element()` without replacement because we dropped support for different data types and now only handle bytes
|
115
|
+ - Removed `Wasmex.Pipe.set_len()` without replacement
|
116
|
+ - WASI directory/file preopens can not configure read/write/create permissions anymore because wasmtime does not support this feature well. We very much plan to add support back [once wasmtime allows](https://github.com/bytecodealliance/wasmtime/issues/4273).
|
102
117
|
|
103
118
|
### Changed
|
104
119
|
|
105
|
- * Changed the underlying Wasm engine from wasmer to [wasmtime](https://wasmtime.dev)
|
106
|
- * Removed `Wasmex.Instance.new()` and `Wasmex.Instance.new_wasi()` in favor of `Wasmex.Store.new()` and `Wasmex.Store.new_wasi()`.
|
107
|
- * WASI-options to `Wasmex.Store.new_wasi()` are now a proper struct `Wasmex.Wasi.WasiOptions` to improve typespecs, docs, and compile-time warnings.
|
108
|
- * `Wasmex.Pipe` went through an internal rewrite. It is now a positioned read/write stream. You may change the read/write position with `Wasmex.Pipe.seek()`
|
109
|
- * Renamed `Wasmex.Pipe.create()` to `Wasmex.Pipe.new()` to be consistent with other struct-creation calls
|
110
|
- * Renamed `Wasmex.Memory.length()` to `Wasmex.Memory.size()` for consistenct with other `size` methods
|
111
|
- * Renamed `Wasmex.Memory.set()` to `Wasmex.Memory.set_byte()`
|
112
|
- * Renamed `Wasmex.Memory.get()` to `Wasmex.Memory.get_byte()`
|
113
|
- * Updated and rewrote most of the docs - all examples are now doctests and tested on CI
|
114
|
- * Updated all Elixir/Rust dependencies
|
120
|
+ - Changed the underlying Wasm engine from wasmer to [wasmtime](https://wasmtime.dev)
|
121
|
+ - Removed `Wasmex.Instance.new()` and `Wasmex.Instance.new_wasi()` in favor of `Wasmex.Store.new()` and `Wasmex.Store.new_wasi()`.
|
122
|
+ - WASI-options to `Wasmex.Store.new_wasi()` are now a proper struct `Wasmex.Wasi.WasiOptions` to improve typespecs, docs, and compile-time warnings.
|
123
|
+ - `Wasmex.Pipe` went through an internal rewrite. It is now a positioned read/write stream. You may change the read/write position with `Wasmex.Pipe.seek()`
|
124
|
+ - Renamed `Wasmex.Pipe.create()` to `Wasmex.Pipe.new()` to be consistent with other struct-creation calls
|
125
|
+ - Renamed `Wasmex.Memory.length()` to `Wasmex.Memory.size()` for consistenct with other `size` methods
|
126
|
+ - Renamed `Wasmex.Memory.set()` to `Wasmex.Memory.set_byte()`
|
127
|
+ - Renamed `Wasmex.Memory.get()` to `Wasmex.Memory.get_byte()`
|
128
|
+ - Updated and rewrote most of the docs - all examples are now doctests and tested on CI
|
129
|
+ - Updated all Elixir/Rust dependencies
|
115
130
|
|
116
131
|
## [0.7.1] - 2022-05-25
|
117
132
|
|
|
@@ -119,7 +134,6 @@ Please visit the list of changes below for more details.
|
119
134
|
|
120
135
|
- Added an optional fourth parameter to `call_function`, `timeout`, which accepts a value in milliseconds that will cap the execution time of the function. The default behavior if not supplied is preserved, which is a 5 second timeout. Thanks @brooksmtownsend for this contribution
|
121
136
|
|
122
|
-
|
123
137
|
## [0.7.0] - 2022-03-27
|
124
138
|
|
125
139
|
### Added
|
changed
README.md
|
@@ -5,8 +5,8 @@
|
5
5
|
<a href="https://github.com/tessi/wasmex/blob/master/LICENSE">
|
6
6
|
<img src="https://img.shields.io/github/license/tessi/wasmex.svg" alt="License">
|
7
7
|
</a>
|
8
|
- <a href="https://github.com/tessi/wasmex/actions/workflows/elixir-ci.yaml">
|
9
|
- <img src="https://github.com/tessi/wasmex/actions/workflows/elixir-ci.yaml/badge.svg?branch=main" alt="CI">
|
8
|
+ <a href="https://github.com/tessi/wasmex/actions/workflows/elixir-ci.yml">
|
9
|
+ <img src="https://github.com/tessi/wasmex/actions/workflows/elixir-ci.yml/badge.svg?branch=main" alt="CI">
|
10
10
|
</a>
|
11
11
|
</p>
|
12
12
|
|
|
@@ -25,7 +25,7 @@ dependencies in `mix.exs`:
|
25
25
|
```elixir
|
26
26
|
def deps do
|
27
27
|
[
|
28
|
- {:wasmex, "~> 0.8.3"}
|
28
|
+ {:wasmex, "~> 0.9.0"}
|
29
29
|
]
|
30
30
|
end
|
31
31
|
```
|
|
@@ -102,7 +102,7 @@ If you plan to change something on the Rust part of this project, set the follow
|
102
102
|
I´m looking forward to your contributions. Please open a PR containing the motivation of your change. If it is a bigger change or refactoring, consider creating an issue first. We can discuss changes there first which might safe us time down the road :)
|
103
103
|
|
104
104
|
Any changes should be covered by tests, they can be run with `mix test`.
|
105
|
- In addition to tests, we expect the formatters and linters (`cargo fmt`, `cargo clippy`, `mix format`, `mix dialyzer`, `mix credo`) to pass.
|
105
|
+ In addition to tests, we expect the formatters and linters (`cargo fmt`, `cargo clippy`, `mix format`, `mix credo`) to pass.
|
106
106
|
|
107
107
|
### Release
|
changed
hex_metadata.config
|
@@ -1,8 +1,12 @@
|
1
|
- {<<"app">>,<<"wasmex">>}.
|
2
|
- {<<"build_tools">>,[<<"mix">>]}.
|
1
|
+ {<<"links">>,
|
2
|
+ [{<<"Docs">>,<<"https://hexdocs.pm/wasmex">>},
|
3
|
+ {<<"GitHub">>,<<"https://github.com/tessi/wasmex">>}]}.
|
4
|
+ {<<"name">>,<<"wasmex">>}.
|
5
|
+ {<<"version">>,<<"0.9.0">>}.
|
3
6
|
{<<"description">>,
|
4
7
|
<<"Wasmex is an Elixir library for executing WebAssembly binaries">>}.
|
5
8
|
{<<"elixir">>,<<"~> 1.12">>}.
|
9
|
+ {<<"app">>,<<"wasmex">>}.
|
6
10
|
{<<"files">>,
|
7
11
|
[<<"lib">>,<<"lib/wasmex">>,<<"lib/wasmex/engine_config.ex">>,
|
8
12
|
<<"lib/wasmex/native.ex">>,<<"lib/wasmex/store.ex">>,
|
|
@@ -21,23 +25,19 @@
|
21
25
|
<<"native/wasmex/src/printable_term_type.rs">>,
|
22
26
|
<<"native/wasmex/src/engine.rs">>,<<"native/wasmex/Cargo.lock">>,
|
23
27
|
<<"native/wasmex/Cargo.toml">>,<<"native/wasmex/README.md">>,
|
24
|
- <<"native/wasmex/.cargo">>,<<"native/wasmex/.cargo/config">>,
|
28
|
+ <<"native/wasmex/.cargo">>,<<"native/wasmex/.cargo/config.toml">>,
|
25
29
|
<<"checksum-Elixir.Wasmex.Native.exs">>,<<".formatter.exs">>,<<"mix.exs">>,
|
26
30
|
<<"README.md">>,<<"LICENSE.md">>,<<"CHANGELOG.md">>]}.
|
27
31
|
{<<"licenses">>,[<<"MIT">>]}.
|
28
|
- {<<"links">>,
|
29
|
- [{<<"Docs">>,<<"https://hexdocs.pm/wasmex">>},
|
30
|
- {<<"GitHub">>,<<"https://github.com/tessi/wasmex">>}]}.
|
31
|
- {<<"name">>,<<"wasmex">>}.
|
32
32
|
{<<"requirements">>,
|
33
|
- [[{<<"app">>,<<"rustler_precompiled">>},
|
34
|
- {<<"name">>,<<"rustler_precompiled">>},
|
33
|
+ [[{<<"name">>,<<"rustler_precompiled">>},
|
34
|
+ {<<"app">>,<<"rustler_precompiled">>},
|
35
35
|
{<<"optional">>,false},
|
36
|
- {<<"repository">>,<<"hexpm">>},
|
37
|
- {<<"requirement">>,<<"~> 0.6.1">>}],
|
38
|
- [{<<"app">>,<<"rustler">>},
|
39
|
- {<<"name">>,<<"rustler">>},
|
36
|
+ {<<"requirement">>,<<"~> 0.7.2">>},
|
37
|
+ {<<"repository">>,<<"hexpm">>}],
|
38
|
+ [{<<"name">>,<<"rustler">>},
|
39
|
+ {<<"app">>,<<"rustler">>},
|
40
40
|
{<<"optional">>,false},
|
41
|
- {<<"repository">>,<<"hexpm">>},
|
42
|
- {<<"requirement">>,<<"~> 0.28.0">>}]]}.
|
43
|
- {<<"version">>,<<"0.8.3">>}.
|
41
|
+ {<<"requirement">>,<<"~> 0.34.0">>},
|
42
|
+ {<<"repository">>,<<"hexpm">>}]]}.
|
43
|
+ {<<"build_tools">>,[<<"mix">>]}.
|
changed
lib/wasmex.ex
|
@@ -89,9 +89,59 @@ defmodule Wasmex do
|
89
89
|
|
90
90
|
- `:i32` a 32 bit integer
|
91
91
|
- `:i64` a 64 bit integer
|
92
|
+ - `:v128` a 128 bit unsigned integer
|
92
93
|
- `:f32` a 32 bit float
|
93
94
|
- `:f64` a 64 bit float
|
94
95
|
|
96
|
+ ### Linking multiple Wasm modules
|
97
|
+
|
98
|
+ Wasm module `links` may be given as an additional option.
|
99
|
+ Links is a map of module names to Wasm modules.
|
100
|
+
|
101
|
+ iex> calculator_wasm = File.read!(TestHelper.wasm_link_test_file_path())
|
102
|
+ iex> utils_wasm = File.read!(TestHelper.wasm_test_file_path())
|
103
|
+ iex> links = %{utils: %{bytes: utils_wasm}}
|
104
|
+ iex> {:ok, pid} = Wasmex.start_link(%{bytes: calculator_wasm, links: links})
|
105
|
+ iex> Wasmex.call_function(pid, "sum_range", [1, 5])
|
106
|
+ {:ok, [15]}
|
107
|
+
|
108
|
+ It is also possible to link an already compiled module.
|
109
|
+ This improves performance if the same module is used many times by compiling it only once.
|
110
|
+
|
111
|
+ iex> calculator_wasm = File.read!(TestHelper.wasm_link_test_file_path())
|
112
|
+ iex> utils_wasm = File.read!(TestHelper.wasm_test_file_path())
|
113
|
+ iex> {:ok, store} = Wasmex.Store.new()
|
114
|
+ iex> {:ok, utils_module} = Wasmex.Module.compile(store, utils_wasm)
|
115
|
+ iex> links = %{utils: %{module: utils_module}}
|
116
|
+ iex> {:ok, pid} = Wasmex.start_link(%{bytes: calculator_wasm, links: links, store: store})
|
117
|
+ iex> Wasmex.call_function(pid, "sum_range", [1, 5])
|
118
|
+ {:ok, [15]}
|
119
|
+
|
120
|
+ **Important:** Make sure to use the same store for the linked modules and the main module.
|
121
|
+
|
122
|
+ When linking multiple Wasm modules, it is important to handle their dependencies properly.
|
123
|
+ This can be achieved by providing a map of module names to their respective Wasm modules in the `links` option.
|
124
|
+
|
125
|
+ For example, if we have a main module that depends on a calculator module, and the calculator module depends on a utils module, we can link them as follows:
|
126
|
+
|
127
|
+ iex> main_wasm = File.read!(TestHelper.wasm_link_dep_test_file_path())
|
128
|
+ iex> calculator_wasm = File.read!(TestHelper.wasm_link_test_file_path())
|
129
|
+ iex> utils_wasm = File.read!(TestHelper.wasm_test_file_path())
|
130
|
+ iex> links = %{
|
131
|
+ ...> calculator: %{
|
132
|
+ ...> bytes: calculator_wasm,
|
133
|
+ ...> links: %{
|
134
|
+ ...> utils: %{bytes: utils_wasm}
|
135
|
+ ...> }
|
136
|
+ ...> }
|
137
|
+ ...> }
|
138
|
+ iex> {:ok, _pid} = Wasmex.start_link(%{bytes: main_wasm, links: links})
|
139
|
+
|
140
|
+ In this example, the `links` map specifies that the `calculator` module depends on the `utils` module.
|
141
|
+ The `links` map is a nested map, where each module name is associated with a map that contains the Wasm module bytes and its dependencies.
|
142
|
+
|
143
|
+ The `links` map can also be used to link an already compiled module, as shown in the previous examples.
|
144
|
+
|
95
145
|
### WASI
|
96
146
|
|
97
147
|
Optionally, modules can be run with WebAssembly System Interface (WASI) support.
|
|
@@ -159,6 +209,9 @@ defmodule Wasmex do
|
159
209
|
def start_link(%{} = opts) when not is_map_key(opts, :imports),
|
160
210
|
do: start_link(Map.merge(opts, %{imports: %{}}))
|
161
211
|
|
212
|
+ def start_link(%{} = opts) when not is_map_key(opts, :links),
|
213
|
+ do: start_link(Map.merge(opts, %{links: %{}}))
|
214
|
+
|
162
215
|
def start_link(%{} = opts) when is_map_key(opts, :module) and not is_map_key(opts, :store),
|
163
216
|
do: {:error, :must_specify_store_used_to_compile_module}
|
164
217
|
|
|
@@ -182,15 +235,41 @@ defmodule Wasmex do
|
182
235
|
end
|
183
236
|
end
|
184
237
|
|
185
|
- def start_link(%{store: store, module: module, imports: imports} = opts)
|
186
|
- when is_map(imports) and not is_map_key(opts, :bytes) do
|
238
|
+ def start_link(%{links: links, store: store} = opts)
|
239
|
+ when is_map(links) and not is_map_key(opts, :compiled_links) do
|
240
|
+ compiled_links =
|
241
|
+ links
|
242
|
+ |> flatten_links()
|
243
|
+ |> Enum.reverse()
|
244
|
+ |> Enum.uniq_by(&elem(&1, 0))
|
245
|
+ |> Enum.map(&build_compiled_links(&1, store))
|
246
|
+
|
247
|
+ opts
|
248
|
+ |> Map.delete(:links)
|
249
|
+ |> Map.put(:compiled_links, compiled_links)
|
250
|
+ |> start_link()
|
251
|
+ end
|
252
|
+
|
253
|
+ def start_link(%{store: store, module: module, imports: imports, compiled_links: links} = opts)
|
254
|
+ when is_map(imports) and is_list(links) and not is_map_key(opts, :bytes) do
|
187
255
|
GenServer.start_link(__MODULE__, %{
|
188
256
|
store: store,
|
189
257
|
module: module,
|
258
|
+ links: links,
|
190
259
|
imports: stringify_keys(imports)
|
191
260
|
})
|
192
261
|
end
|
193
262
|
|
263
|
+ defp flatten_links(links) do
|
264
|
+ Enum.flat_map(links, fn {name, opts} ->
|
265
|
+ if Map.has_key?(opts, :links) do
|
266
|
+ [{name, Map.drop(opts, [:links])} | flatten_links(opts.links)]
|
267
|
+ else
|
268
|
+ [{name, opts}]
|
269
|
+ end
|
270
|
+ end)
|
271
|
+ end
|
272
|
+
|
194
273
|
defp build_store(opts) do
|
195
274
|
if Map.has_key?(opts, :wasi) do
|
196
275
|
Wasmex.Store.new_wasi(stringify_keys(opts[:wasi]))
|
|
@@ -199,6 +278,17 @@ defmodule Wasmex do
|
199
278
|
end
|
200
279
|
end
|
201
280
|
|
281
|
+ defp build_compiled_links({name, %{bytes: bytes} = opts}, store)
|
282
|
+ when not is_map_key(opts, :module) do
|
283
|
+ with {:ok, module} <- Wasmex.Module.compile(store, bytes) do
|
284
|
+ %{name: stringify(name), module: module}
|
285
|
+ end
|
286
|
+ end
|
287
|
+
|
288
|
+ defp build_compiled_links({name, %{module: module}}, _store) do
|
289
|
+ %{name: stringify(name), module: module}
|
290
|
+ end
|
291
|
+
|
202
292
|
@doc ~S"""
|
203
293
|
Returns whether a function export with the given `name` exists in the Wasm instance.
|
204
294
|
|
|
@@ -353,6 +443,10 @@ defmodule Wasmex do
|
353
443
|
for {key, val} <- map, into: %{}, do: {stringify(key), stringify_keys(val)}
|
354
444
|
end
|
355
445
|
|
446
|
+ defp stringify_keys(list) when is_list(list) do
|
447
|
+ for val <- list, into: [], do: stringify_keys(val)
|
448
|
+ end
|
449
|
+
|
356
450
|
defp stringify_keys(value), do: value
|
357
451
|
|
358
452
|
defp stringify(s) when is_binary(s), do: s
|
|
@@ -361,8 +455,9 @@ defmodule Wasmex do
|
361
455
|
# Server
|
362
456
|
|
363
457
|
@impl true
|
364
|
- def init(%{store: store, module: module, imports: imports} = state) when is_map(imports) do
|
365
|
- case Wasmex.Instance.new(store, module, imports) do
|
458
|
+ def init(%{store: store, module: module, imports: imports, links: links} = state)
|
459
|
+ when is_map(imports) and is_list(links) do
|
460
|
+ case Wasmex.Instance.new(store, module, imports, links) do
|
366
461
|
{:ok, instance} -> {:ok, Map.merge(state, %{instance: instance})}
|
367
462
|
{:error, reason} -> {:error, reason}
|
368
463
|
end
|
changed
lib/wasmex/engine_config.ex
|
@@ -36,7 +36,7 @@ defmodule Wasmex.EngineConfig do
|
36
36
|
|
37
37
|
Note that a `Wasmex.Store` starts with no fuel, so if you enable this option
|
38
38
|
you'll have to be sure to pour some fuel into `Wasmex.Store` before
|
39
|
- executing some code. See `Wasmex.StoreOrCaller.add_fuel/2`.
|
39
|
+ executing some code. See `Wasmex.StoreOrCaller.set_fuel/2`.
|
40
40
|
|
41
41
|
## Example
|
changed
lib/wasmex/instance.ex
|
@@ -35,8 +35,10 @@ defmodule Wasmex.Instance do
|
35
35
|
The `import` parameter is a nested map of Wasm namespaces.
|
36
36
|
Each namespace consists of a name and a map of function names to function signatures.
|
37
37
|
|
38
|
+ The `links` parameter is a list of name-module pairs that are dynamically linked to the instance.
|
39
|
+
|
38
40
|
Function signatures are a tuple of the form `{:fn, arg_types, return_types, callback}`.
|
39
|
- Where `arg_types` and `return_types` are lists of `:i32`, `:i64`, `:f32`, `:f64`.
|
41
|
+ Where `arg_types` and `return_types` are lists of `:i32`, `:i64`, `:f32`, `:f64`, `:v128`.
|
40
42
|
|
41
43
|
Each `callback` function receives a `context` map as the first argument followed by the arguments specified in its signature.
|
42
44
|
`context` has the following keys:
|
|
@@ -61,17 +63,28 @@ defmodule Wasmex.Instance do
|
61
63
|
...> "imported_void" => {:fn, [], [], fn _context -> nil end}
|
62
64
|
...> }
|
63
65
|
...> }
|
64
|
- iex> {:ok, %Wasmex.Instance{}} = Wasmex.Instance.new(store, module, imports)
|
66
|
+ ...> links = []
|
67
|
+ iex> {:ok, %Wasmex.Instance{}} = Wasmex.Instance.new(store, module, imports, links)
|
65
68
|
"""
|
66
|
- @spec new(Wasmex.StoreOrCaller.t(), Wasmex.Module.t(), %{
|
67
|
- optional(binary()) => (... -> any())
|
68
|
- }) ::
|
69
|
+ @spec new(
|
70
|
+ Wasmex.StoreOrCaller.t(),
|
71
|
+ Wasmex.Module.t(),
|
72
|
+ %{optional(binary()) => (... -> any())},
|
73
|
+ [%{optional(binary()) => Wasmex.Module.t()}] | []
|
74
|
+ ) ::
|
69
75
|
{:ok, __MODULE__.t()} | {:error, binary()}
|
70
|
- def new(store_or_caller, module, imports) when is_map(imports) do
|
76
|
+ def new(store_or_caller, module, imports, links \\ [])
|
77
|
+ when is_map(imports) and is_list(links) do
|
71
78
|
%Wasmex.StoreOrCaller{resource: store_or_caller_resource} = store_or_caller
|
72
79
|
%Wasmex.Module{resource: module_resource} = module
|
73
80
|
|
74
|
- case Wasmex.Native.instance_new(store_or_caller_resource, module_resource, imports) do
|
81
|
+ links =
|
82
|
+ links
|
83
|
+ |> Enum.map(fn %{name: name, module: module} ->
|
84
|
+ %{name: name, module_resource: module.resource}
|
85
|
+ end)
|
86
|
+
|
87
|
+ case Wasmex.Native.instance_new(store_or_caller_resource, module_resource, imports, links) do
|
75
88
|
{:error, err} -> {:error, err}
|
76
89
|
resource -> {:ok, __wrap_resource__(resource)}
|
77
90
|
end
|
|
@@ -172,6 +185,75 @@ defmodule Wasmex.Instance do
|
172
185
|
def memory(store, instance) do
|
173
186
|
Wasmex.Memory.from_instance(store, instance)
|
174
187
|
end
|
188
|
+
|
189
|
+ @doc ~S"""
|
190
|
+ Reads the value of an exported global.
|
191
|
+
|
192
|
+ ## Examples
|
193
|
+
|
194
|
+ iex> wat = "(module
|
195
|
+ ...> (global $answer i32 (i32.const 42))
|
196
|
+ ...> (export \"answer\" (global $answer))
|
197
|
+ ...> )"
|
198
|
+ iex> {:ok, store} = Wasmex.Store.new()
|
199
|
+ iex> {:ok, module} = Wasmex.Module.compile(store, wat)
|
200
|
+ iex> {:ok, instance} = Wasmex.Instance.new(store, module, %{})
|
201
|
+ iex> Wasmex.Instance.get_global_value(store, instance, "answer")
|
202
|
+ {:ok, 42}
|
203
|
+ iex> Wasmex.Instance.get_global_value(store, instance, "not_a_global")
|
204
|
+ {:error, "exported global `not_a_global` not found"}
|
205
|
+ """
|
206
|
+ @spec get_global_value(Wasmex.StoreOrCaller.t(), __MODULE__.t(), binary()) ::
|
207
|
+ {:ok, number()} | {:error, binary()}
|
208
|
+ def get_global_value(store_or_caller, instance, global_name) do
|
209
|
+ %{resource: store_or_caller_resource} = store_or_caller
|
210
|
+ %__MODULE__{resource: instance_resource} = instance
|
211
|
+
|
212
|
+ Wasmex.Native.instance_get_global_value(
|
213
|
+ store_or_caller_resource,
|
214
|
+ instance_resource,
|
215
|
+ global_name
|
216
|
+ )
|
217
|
+ |> case do
|
218
|
+ {:error, _reason} = term -> term
|
219
|
+ result when is_number(result) -> {:ok, result}
|
220
|
+ end
|
221
|
+ end
|
222
|
+
|
223
|
+ @doc ~S"""
|
224
|
+ Sets the value of an exported mutable global.
|
225
|
+
|
226
|
+ ## Examples
|
227
|
+
|
228
|
+ iex> wat = "(module
|
229
|
+ ...> (global $count (mut i32) (i32.const 0))
|
230
|
+ ...> (export \"count\" (global $count))
|
231
|
+ ...> )"
|
232
|
+ iex> {:ok, store} = Wasmex.Store.new()
|
233
|
+ iex> {:ok, module} = Wasmex.Module.compile(store, wat)
|
234
|
+ iex> {:ok, instance} = Wasmex.Instance.new(store, module, %{})
|
235
|
+ iex> Wasmex.Instance.set_global_value(store, instance, "count", 1)
|
236
|
+ :ok
|
237
|
+ iex> Wasmex.Instance.get_global_value(store, instance, "count")
|
238
|
+ {:ok, 1}
|
239
|
+ """
|
240
|
+ @spec set_global_value(Wasmex.StoreOrCaller.t(), __MODULE__.t(), binary(), number()) ::
|
241
|
+ {:ok, number()} | {:error, binary()}
|
242
|
+ def set_global_value(store_or_caller, instance, global_name, new_value) do
|
243
|
+ %{resource: store_or_caller_resource} = store_or_caller
|
244
|
+ %__MODULE__{resource: instance_resource} = instance
|
245
|
+
|
246
|
+ Wasmex.Native.instance_set_global_value(
|
247
|
+ store_or_caller_resource,
|
248
|
+ instance_resource,
|
249
|
+ global_name,
|
250
|
+ new_value
|
251
|
+ )
|
252
|
+ |> case do
|
253
|
+ {} -> :ok
|
254
|
+ {:error, _reason} = term -> term
|
255
|
+ end
|
256
|
+ end
|
175
257
|
end
|
176
258
|
|
177
259
|
defimpl Inspect, for: Wasmex.Instance do
|
changed
lib/wasmex/native.ex
|
@@ -32,7 +32,7 @@ defmodule Wasmex.Native do
|
32
32
|
def module_serialize(_module_resource), do: error()
|
33
33
|
def module_unsafe_deserialize(_binary, _engine_resource), do: error()
|
34
34
|
|
35
|
- def instance_new(_store_or_caller_resource, _module_resource, _imports), do: error()
|
35
|
+ def instance_new(_store_or_caller_resource, _module_resource, _imports, _links), do: error()
|
36
36
|
|
37
37
|
def instance_function_export_exists(
|
38
38
|
_store_or_caller_resource,
|
|
@@ -52,6 +52,17 @@ defmodule Wasmex.Native do
|
52
52
|
),
|
53
53
|
do: error()
|
54
54
|
|
55
|
+ def instance_get_global_value(_store_or_caller_resource, _instance_resource, _global_name),
|
56
|
+ do: error()
|
57
|
+
|
58
|
+ def instance_set_global_value(
|
59
|
+ _store_or_caller_resource,
|
60
|
+ _instance_resource,
|
61
|
+ _global_name,
|
62
|
+ _new_value
|
63
|
+ ),
|
64
|
+ do: error()
|
65
|
+
|
55
66
|
def memory_from_instance(_store_resource, _memory_resource), do: error()
|
56
67
|
def memory_size(_store_resource, _memory_resource), do: error()
|
57
68
|
def memory_grow(_store_resource, _memory_resource, _pages), do: error()
|
|
@@ -69,9 +80,8 @@ defmodule Wasmex.Native do
|
69
80
|
def store_new(_store_limits, _engine_resource), do: error()
|
70
81
|
def store_new_wasi(_wasi_options, _store_limits, _engine_resource), do: error()
|
71
82
|
|
72
|
- def store_or_caller_add_fuel(_store_or_caller_resource, _fuel), do: error()
|
73
|
- def store_or_caller_consume_fuel(_store_or_caller_resource, _fuel), do: error()
|
74
|
- def store_or_caller_fuel_consumed(_store_or_caller_resource), do: error()
|
83
|
+ def store_or_caller_get_fuel(_store_or_caller_resource), do: error()
|
84
|
+ def store_or_caller_set_fuel(_store_or_caller_resource, _fuel), do: error()
|
75
85
|
|
76
86
|
# When the NIF is loaded, it will override functions in this module.
|
77
87
|
# Calling error is handles the case when the nif could not be loaded.
|
changed
lib/wasmex/store_or_caller.ex
|
@@ -32,7 +32,7 @@ defmodule Wasmex.StoreOrCaller do
|
32
32
|
end
|
33
33
|
|
34
34
|
@doc ~S"""
|
35
|
- Adds fuel to this Store for Wasm to consume while executing.
|
35
|
+ Sets fuel to for Wasm to consume while executing.
|
36
36
|
|
37
37
|
For this method to work, fuel consumption must be enabled via
|
38
38
|
`Wasmex.EngineConfig.consume_fuel/2. By default a `Wasmex.Store`
|
|
@@ -58,55 +58,17 @@ defmodule Wasmex.StoreOrCaller do
|
58
58
|
|
59
59
|
iex> {:ok, engine} = Wasmex.Engine.new(%Wasmex.EngineConfig{consume_fuel: true})
|
60
60
|
iex> {:ok, store} = Wasmex.Store.new(nil, engine)
|
61
|
- iex> Wasmex.StoreOrCaller.add_fuel(store, 10)
|
61
|
+ iex> Wasmex.StoreOrCaller.set_fuel(store, 10)
|
62
62
|
:ok
|
63
63
|
"""
|
64
|
- @spec add_fuel(__MODULE__.t(), pos_integer()) :: :ok | {:error, binary()}
|
65
|
- def add_fuel(%__MODULE__{resource: resource}, fuel) do
|
66
|
- case Wasmex.Native.store_or_caller_add_fuel(resource, fuel) do
|
64
|
+ @spec set_fuel(__MODULE__.t(), pos_integer()) :: :ok | {:error, binary()}
|
65
|
+ def set_fuel(%__MODULE__{resource: resource}, fuel) do
|
66
|
+ case Wasmex.Native.store_or_caller_set_fuel(resource, fuel) do
|
67
67
|
{} -> :ok
|
68
68
|
{:error, reason} -> {:error, reason}
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
- @doc ~S"""
|
73
|
- Synthetically consumes fuel from this Store.
|
74
|
-
|
75
|
- For this method to work fuel, consumption must be enabled via
|
76
|
- `Wasmex.EngineConfig.consume_fuel/2`.
|
77
|
-
|
78
|
- WebAssembly execution will automatically consume fuel but if so desired
|
79
|
- the embedder can also consume fuel manually to account for relative
|
80
|
- costs of host functions, for example.
|
81
|
-
|
82
|
- This function will attempt to consume `fuel` units of fuel from within
|
83
|
- this store. If the remaining amount of fuel allows this then `{:ok, N}`
|
84
|
- is returned where `N` is the amount of remaining fuel. Otherwise an
|
85
|
- error is returned and no fuel is consumed.
|
86
|
-
|
87
|
- ## Errors
|
88
|
-
|
89
|
- This function will return an error either if fuel consumption is not
|
90
|
- enabled via `Wasmex.EngineConfig.consume_fuel/2` or if `fuel` exceeds
|
91
|
- the amount of remaining fuel within this store.
|
92
|
-
|
93
|
- ## Examples
|
94
|
-
|
95
|
- iex> {:ok, engine} = Wasmex.Engine.new(%Wasmex.EngineConfig{consume_fuel: true})
|
96
|
- iex> {:ok, store} = Wasmex.Store.new(nil, engine)
|
97
|
- iex> Wasmex.StoreOrCaller.add_fuel(store, 10)
|
98
|
- iex> Wasmex.StoreOrCaller.fuel_remaining(store)
|
99
|
- {:ok, 10}
|
100
|
- """
|
101
|
- @spec consume_fuel(__MODULE__.t(), pos_integer() | 0) ::
|
102
|
- {:ok, pos_integer()} | {:error, binary()}
|
103
|
- def consume_fuel(%__MODULE__{resource: resource}, fuel) do
|
104
|
- case Wasmex.Native.store_or_caller_consume_fuel(resource, fuel) do
|
105
|
- {:error, reason} -> {:error, reason}
|
106
|
- fuel_remaining -> {:ok, fuel_remaining}
|
107
|
- end
|
108
|
- end
|
109
|
-
|
110
72
|
@doc ~S"""
|
111
73
|
Returns the amount of fuel available for future execution of this store.
|
112
74
|
|
|
@@ -114,44 +76,15 @@ defmodule Wasmex.StoreOrCaller do
|
114
76
|
|
115
77
|
iex> {:ok, engine} = Wasmex.Engine.new(%Wasmex.EngineConfig{consume_fuel: true})
|
116
78
|
iex> {:ok, store} = Wasmex.Store.new(nil, engine)
|
117
|
- iex> Wasmex.StoreOrCaller.add_fuel(store, 10)
|
118
|
- iex> Wasmex.StoreOrCaller.fuel_remaining(store)
|
79
|
+ iex> Wasmex.StoreOrCaller.set_fuel(store, 10)
|
80
|
+ iex> Wasmex.StoreOrCaller.get_fuel(store)
|
119
81
|
{:ok, 10}
|
120
82
|
"""
|
121
|
- @spec fuel_remaining(__MODULE__.t()) :: {:ok, pos_integer()} | {:error, binary()}
|
122
|
- def fuel_remaining(%__MODULE__{} = store_or_caller) do
|
123
|
- consume_fuel(store_or_caller, 0)
|
124
|
- end
|
125
|
-
|
126
|
- @doc ~S"""
|
127
|
- Returns the amount of fuel consumed by this store's execution so far.
|
128
|
-
|
129
|
- Note that fuel, if enabled, must be initially added via
|
130
|
- `Wasmex.StoreOrCaller.add_fuel/2`.
|
131
|
-
|
132
|
- ## Errors
|
133
|
-
|
134
|
- If fuel consumption is not enabled via
|
135
|
- `Wasmex.EngineConfig.consume_fuel/2` then this function will return
|
136
|
- an error tuple.
|
137
|
-
|
138
|
- ## Examples
|
139
|
-
|
140
|
- iex> {:ok, engine} = Wasmex.Engine.new(%Wasmex.EngineConfig{consume_fuel: true})
|
141
|
- iex> {:ok, store} = Wasmex.Store.new(nil, engine)
|
142
|
- iex> Wasmex.StoreOrCaller.fuel_consumed(store)
|
143
|
- {:ok, 0}
|
144
|
- iex> Wasmex.StoreOrCaller.add_fuel(store, 10)
|
145
|
- iex> {:ok, _fuel} = Wasmex.StoreOrCaller.consume_fuel(store, 8)
|
146
|
- iex> Wasmex.StoreOrCaller.fuel_consumed(store)
|
147
|
- {:ok, 8}
|
148
|
- """
|
149
|
- @spec fuel_consumed(__MODULE__.t()) :: {:ok, pos_integer()} | {:error, binary()}
|
150
|
- def fuel_consumed(%__MODULE__{resource: resource}) do
|
151
|
- case Wasmex.Native.store_or_caller_fuel_consumed(resource) do
|
83
|
+ @spec get_fuel(__MODULE__.t()) :: {:ok, pos_integer()} | {:error, binary()}
|
84
|
+ def get_fuel(%__MODULE__{resource: resource}) do
|
85
|
+ case Wasmex.Native.store_or_caller_get_fuel(resource) do
|
152
86
|
{:error, reason} -> {:error, reason}
|
153
|
- nil -> {:error, "Could not consume fuel: fuel is not configured in this store"}
|
154
|
- fuel_consumed -> {:ok, fuel_consumed}
|
87
|
+ get_fuel -> {:ok, get_fuel}
|
155
88
|
end
|
156
89
|
end
|
157
90
|
end
|
changed
mix.exs
|
@@ -1,7 +1,7 @@
|
1
1
|
defmodule Wasmex.MixProject do
|
2
2
|
use Mix.Project
|
3
3
|
|
4
|
- @version "0.8.3"
|
4
|
+ @version "0.9.0"
|
5
5
|
|
6
6
|
def project do
|
7
7
|
[
|
|
@@ -12,10 +12,7 @@ defmodule Wasmex.MixProject do
|
12
12
|
name: "wasmex",
|
13
13
|
description: description(),
|
14
14
|
package: package(),
|
15
|
- deps: deps(),
|
16
|
- dialyzer: [
|
17
|
- plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
|
18
|
- ]
|
15
|
+ deps: deps()
|
19
16
|
]
|
20
17
|
end
|
21
18
|
|
|
@@ -29,11 +26,10 @@ defmodule Wasmex.MixProject do
|
29
26
|
# Run "mix help deps" to learn about dependencies.
|
30
27
|
defp deps do
|
31
28
|
[
|
32
|
- {:rustler_precompiled, "~> 0.6.1"},
|
33
|
- {:rustler, "~> 0.28.0"},
|
34
|
- {:ex_doc, "~> 0.29.1", only: [:dev, :test]},
|
35
|
- {:dialyxir, "~> 1.3.0", only: [:dev, :test], runtime: false},
|
36
|
- {:credo, "~> 1.6", only: [:dev, :test], runtime: false}
|
29
|
+ {:rustler_precompiled, "~> 0.7.2"},
|
30
|
+ {:rustler, "~> 0.34.0"},
|
31
|
+ {:ex_doc, "~> 0.34.1", only: [:dev, :test]},
|
32
|
+ {:credo, "~> 1.7.5", only: [:dev, :test], runtime: false}
|
37
33
|
]
|
38
34
|
end
|
removed
native/wasmex/.cargo/config
|
@@ -1,20 +0,0 @@
|
1
|
- [target.'cfg(target_os = "macos")']
|
2
|
- rustflags = [
|
3
|
- "-C", "link-arg=-undefined",
|
4
|
- "-C", "link-arg=dynamic_lookup",
|
5
|
- ]
|
6
|
-
|
7
|
- # See https://github.com/rust-lang/rust/issues/59302
|
8
|
- [target.x86_64-unknown-linux-musl]
|
9
|
- rustflags = [
|
10
|
- "-C", "target-feature=-crt-static"
|
11
|
- ]
|
12
|
-
|
13
|
- [target.aarch64-unknown-linux-musl]
|
14
|
- rustflags = [
|
15
|
- "-C", "target-feature=-crt-static"
|
16
|
- ]
|
17
|
-
|
18
|
- # Provides a small build size, but takes more time to build.
|
19
|
- [profile.release]
|
20
|
- lto = true
|
added
native/wasmex/.cargo/config.toml
|
@@ -0,0 +1,20 @@
|
1
|
+ [target.'cfg(target_os = "macos")']
|
2
|
+ rustflags = [
|
3
|
+ "-C", "link-arg=-undefined",
|
4
|
+ "-C", "link-arg=dynamic_lookup",
|
5
|
+ ]
|
6
|
+
|
7
|
+ # See https://github.com/rust-lang/rust/issues/59302
|
8
|
+ [target.x86_64-unknown-linux-musl]
|
9
|
+ rustflags = [
|
10
|
+ "-C", "target-feature=-crt-static"
|
11
|
+ ]
|
12
|
+
|
13
|
+ [target.aarch64-unknown-linux-musl]
|
14
|
+ rustflags = [
|
15
|
+ "-C", "target-feature=-crt-static"
|
16
|
+ ]
|
17
|
+
|
18
|
+ # Provides a small build size, but takes more time to build.
|
19
|
+ [profile.release]
|
20
|
+ lto = true
|
changed
native/wasmex/Cargo.lock
|
@@ -4,29 +4,45 @@ version = 3
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
- version = "0.19.0"
|
7
|
+ version = "0.21.0"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
- checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
|
9
|
+ checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
10
10
|
dependencies = [
|
11
|
- "gimli",
|
11
|
+ "gimli 0.28.1",
|
12
12
|
]
|
13
13
|
|
14
14
|
[[package]]
|
15
|
- name = "ahash"
|
16
|
- version = "0.8.3"
|
15
|
+ name = "addr2line"
|
16
|
+ version = "0.22.0"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
- checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
18
|
+ checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
19
|
+ dependencies = [
|
20
|
+ "gimli 0.29.0",
|
21
|
+ ]
|
22
|
+
|
23
|
+ [[package]]
|
24
|
+ name = "adler"
|
25
|
+ version = "1.0.2"
|
26
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
27
|
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
28
|
+
|
29
|
+ [[package]]
|
30
|
+ name = "ahash"
|
31
|
+ version = "0.8.11"
|
32
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
19
34
|
dependencies = [
|
20
35
|
"cfg-if",
|
21
36
|
"once_cell",
|
22
37
|
"version_check",
|
38
|
+ "zerocopy",
|
23
39
|
]
|
24
40
|
|
25
41
|
[[package]]
|
26
42
|
name = "aho-corasick"
|
27
|
- version = "1.0.1"
|
43
|
+ version = "1.1.3"
|
28
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
29
|
- checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
|
45
|
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
30
46
|
dependencies = [
|
31
47
|
"memchr",
|
32
48
|
]
|
|
@@ -38,60 +54,69 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
54
|
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
39
55
|
|
40
56
|
[[package]]
|
41
|
- name = "anyhow"
|
42
|
- version = "1.0.71"
|
57
|
+ name = "android_system_properties"
|
58
|
+ version = "0.1.5"
|
43
59
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
- checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
|
60
|
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
61
|
+ dependencies = [
|
62
|
+ "libc",
|
63
|
+ ]
|
64
|
+
|
65
|
+ [[package]]
|
66
|
+ name = "anyhow"
|
67
|
+ version = "1.0.86"
|
68
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
|
+ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
45
70
|
|
46
71
|
[[package]]
|
47
72
|
name = "arbitrary"
|
48
|
- version = "1.3.0"
|
73
|
+ version = "1.3.2"
|
49
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
- checksum = "e2d098ff73c1ca148721f37baad5ea6a465a13f9573aba8641fbbbae8164a54e"
|
75
|
+ checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
51
76
|
|
52
77
|
[[package]]
|
53
78
|
name = "async-trait"
|
54
|
- version = "0.1.68"
|
79
|
+ version = "0.1.81"
|
55
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
- checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
81
|
+ checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
57
82
|
dependencies = [
|
58
83
|
"proc-macro2",
|
59
84
|
"quote",
|
60
|
- "syn 2.0.16",
|
85
|
+ "syn",
|
61
86
|
]
|
62
87
|
|
63
88
|
[[package]]
|
64
89
|
name = "autocfg"
|
65
|
- version = "1.1.0"
|
90
|
+ version = "1.3.0"
|
66
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
92
|
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
68
93
|
|
69
94
|
[[package]]
|
70
|
- name = "base64"
|
71
|
- version = "0.21.1"
|
95
|
+ name = "backtrace"
|
96
|
+ version = "0.3.73"
|
72
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
- checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105"
|
74
|
-
|
75
|
- [[package]]
|
76
|
- name = "bincode"
|
77
|
- version = "1.3.3"
|
78
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
79
|
- checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
98
|
+ checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
80
99
|
dependencies = [
|
81
|
- "serde",
|
100
|
+ "addr2line 0.22.0",
|
101
|
+ "cc",
|
102
|
+ "cfg-if",
|
103
|
+ "libc",
|
104
|
+ "miniz_oxide",
|
105
|
+ "object",
|
106
|
+ "rustc-demangle",
|
82
107
|
]
|
83
108
|
|
84
109
|
[[package]]
|
85
|
- name = "bitflags"
|
86
|
- version = "1.3.2"
|
110
|
+ name = "base64"
|
111
|
+ version = "0.21.7"
|
87
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
113
|
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
89
114
|
|
90
115
|
[[package]]
|
91
116
|
name = "bitflags"
|
92
|
- version = "2.3.1"
|
117
|
+ version = "2.6.0"
|
93
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
- checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84"
|
119
|
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
95
120
|
|
96
121
|
[[package]]
|
97
122
|
name = "block-buffer"
|
|
@@ -104,33 +129,51 @@ dependencies = [
|
104
129
|
|
105
130
|
[[package]]
|
106
131
|
name = "bumpalo"
|
107
|
- version = "3.12.2"
|
132
|
+ version = "3.16.0"
|
108
133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
- checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
|
134
|
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
110
135
|
|
111
136
|
[[package]]
|
112
137
|
name = "byteorder"
|
113
|
- version = "1.4.3"
|
138
|
+ version = "1.5.0"
|
114
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
|
- checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
140
|
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
141
|
+
|
142
|
+ [[package]]
|
143
|
+ name = "bytes"
|
144
|
+ version = "1.6.1"
|
145
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
+ checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
|
116
147
|
|
117
148
|
[[package]]
|
118
149
|
name = "cap-fs-ext"
|
119
|
- version = "1.0.15"
|
150
|
+ version = "3.2.0"
|
120
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
- checksum = "58bc48200a1a0fa6fba138b1802ad7def18ec1cdd92f7b2a04e21f1bd887f7b9"
|
152
|
+ checksum = "eb23061fc1c4ead4e45ca713080fe768e6234e959f5a5c399c39eb41aa34e56e"
|
122
153
|
dependencies = [
|
123
154
|
"cap-primitives",
|
124
155
|
"cap-std",
|
125
156
|
"io-lifetimes",
|
126
|
- "windows-sys",
|
157
|
+ "windows-sys 0.52.0",
|
158
|
+ ]
|
159
|
+
|
160
|
+ [[package]]
|
161
|
+ name = "cap-net-ext"
|
162
|
+ version = "3.2.0"
|
163
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
+ checksum = "f83ae11f116bcbafc5327c6af250341db96b5930046732e1905f7dc65887e0e1"
|
165
|
+ dependencies = [
|
166
|
+ "cap-primitives",
|
167
|
+ "cap-std",
|
168
|
+ "rustix",
|
169
|
+ "smallvec",
|
127
170
|
]
|
128
171
|
|
129
172
|
[[package]]
|
130
173
|
name = "cap-primitives"
|
131
|
- version = "1.0.15"
|
174
|
+ version = "3.2.0"
|
132
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
- checksum = "a4b6df5b295dca8d56f35560be8c391d59f0420f72e546997154e24e765e6451"
|
176
|
+ checksum = "6d00bd8d26c4270d950eaaa837387964a2089a1c3c349a690a1fa03221d29531"
|
134
177
|
dependencies = [
|
135
178
|
"ambient-authority",
|
136
179
|
"fs-set-times",
|
|
@@ -139,15 +182,15 @@ dependencies = [
|
139
182
|
"ipnet",
|
140
183
|
"maybe-owned",
|
141
184
|
"rustix",
|
142
|
- "windows-sys",
|
185
|
+ "windows-sys 0.52.0",
|
143
186
|
"winx",
|
144
187
|
]
|
145
188
|
|
146
189
|
[[package]]
|
147
190
|
name = "cap-rand"
|
148
|
- version = "1.0.15"
|
191
|
+ version = "3.2.0"
|
149
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
- checksum = "4d25555efacb0b5244cf1d35833d55d21abc916fff0eaad254b8e2453ea9b8ab"
|
193
|
+ checksum = "dbcb16a619d8b8211ed61f42bd290d2a1ac71277a69cf8417ec0996fa92f5211"
|
151
194
|
dependencies = [
|
152
195
|
"ambient-authority",
|
153
196
|
"rand",
|
|
@@ -155,9 +198,9 @@ dependencies = [
|
155
198
|
|
156
199
|
[[package]]
|
157
200
|
name = "cap-std"
|
158
|
- version = "1.0.15"
|
201
|
+ version = "3.2.0"
|
159
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
160
|
- checksum = "3373a62accd150b4fcba056d4c5f3b552127f0ec86d3c8c102d60b978174a012"
|
203
|
+ checksum = "19eb8e3d71996828751c1ed3908a439639752ac6bdc874e41469ef7fc15fbd7f"
|
161
204
|
dependencies = [
|
162
205
|
"cap-primitives",
|
163
206
|
"io-extras",
|
|
@@ -167,11 +210,13 @@ dependencies = [
|
167
210
|
|
168
211
|
[[package]]
|
169
212
|
name = "cap-time-ext"
|
170
|
- version = "1.0.15"
|
213
|
+ version = "3.2.0"
|
171
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
- checksum = "e95002993b7baee6b66c8950470e59e5226a23b3af39fc59c47fe416dd39821a"
|
215
|
+ checksum = "61142dc51e25b7acc970ca578ce2c3695eac22bbba46c1073f5f583e78957725"
|
173
216
|
dependencies = [
|
217
|
+ "ambient-authority",
|
174
218
|
"cap-primitives",
|
219
|
+ "iana-time-zone",
|
175
220
|
"once_cell",
|
176
221
|
"rustix",
|
177
222
|
"winx",
|
|
@@ -179,11 +224,12 @@ dependencies = [
|
179
224
|
|
180
225
|
[[package]]
|
181
226
|
name = "cc"
|
182
|
- version = "1.0.79"
|
227
|
+ version = "1.1.6"
|
183
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
- checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
229
|
+ checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f"
|
185
230
|
dependencies = [
|
186
231
|
"jobserver",
|
232
|
+ "libc",
|
187
233
|
]
|
188
234
|
|
189
235
|
[[package]]
|
|
@@ -193,91 +239,117 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
239
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
194
240
|
|
195
241
|
[[package]]
|
196
|
- name = "cpp_demangle"
|
197
|
- version = "0.3.5"
|
242
|
+ name = "cobs"
|
243
|
+ version = "0.2.3"
|
198
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
199
|
- checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
|
245
|
+ checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
|
246
|
+
|
247
|
+ [[package]]
|
248
|
+ name = "core-foundation-sys"
|
249
|
+ version = "0.8.6"
|
250
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
252
|
+
|
253
|
+ [[package]]
|
254
|
+ name = "cpp_demangle"
|
255
|
+ version = "0.4.3"
|
256
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
+ checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119"
|
200
258
|
dependencies = [
|
201
259
|
"cfg-if",
|
202
260
|
]
|
203
261
|
|
204
262
|
[[package]]
|
205
263
|
name = "cpufeatures"
|
206
|
- version = "0.2.7"
|
264
|
+ version = "0.2.12"
|
207
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
208
|
- checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
|
266
|
+ checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
209
267
|
dependencies = [
|
210
268
|
"libc",
|
211
269
|
]
|
212
270
|
|
213
271
|
[[package]]
|
214
272
|
name = "cranelift-bforest"
|
215
|
- version = "0.96.3"
|
273
|
+ version = "0.110.1"
|
216
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
217
|
- checksum = "9c064a534a914eb6709d198525321a386dad50627aecfaf64053f369993a3e5a"
|
275
|
+ checksum = "effa84ab2023f7138045ece6b326588c17447ca22e66db71ec15cb0a6c0c4ad2"
|
218
276
|
dependencies = [
|
219
277
|
"cranelift-entity",
|
220
278
|
]
|
221
279
|
|
222
280
|
[[package]]
|
223
|
- name = "cranelift-codegen"
|
224
|
- version = "0.96.3"
|
281
|
+ name = "cranelift-bitset"
|
282
|
+ version = "0.110.1"
|
225
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
- checksum = "619ed4d24acef0bd58b16a1be39077c0b36c65782e6c933892439af5e799110e"
|
284
|
+ checksum = "38a1dfc50dca188a15d938867c4400589530bcb0138f7022aae6d059d1d8c309"
|
285
|
+ dependencies = [
|
286
|
+ "serde",
|
287
|
+ "serde_derive",
|
288
|
+ ]
|
289
|
+
|
290
|
+ [[package]]
|
291
|
+ name = "cranelift-codegen"
|
292
|
+ version = "0.110.1"
|
293
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
+ checksum = "821c20c639350158ecca928dc2a244d0d1c9cef2377a378fc62a445a286eb1ca"
|
227
295
|
dependencies = [
|
228
296
|
"bumpalo",
|
229
297
|
"cranelift-bforest",
|
298
|
+ "cranelift-bitset",
|
230
299
|
"cranelift-codegen-meta",
|
231
300
|
"cranelift-codegen-shared",
|
232
301
|
"cranelift-control",
|
233
302
|
"cranelift-entity",
|
234
303
|
"cranelift-isle",
|
235
|
- "gimli",
|
236
|
- "hashbrown 0.13.2",
|
304
|
+ "gimli 0.28.1",
|
305
|
+ "hashbrown 0.14.5",
|
237
306
|
"log",
|
238
307
|
"regalloc2",
|
308
|
+ "rustc-hash",
|
239
309
|
"smallvec",
|
240
310
|
"target-lexicon",
|
241
311
|
]
|
242
312
|
|
243
313
|
[[package]]
|
244
314
|
name = "cranelift-codegen-meta"
|
245
|
- version = "0.96.3"
|
315
|
+ version = "0.110.1"
|
246
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
- checksum = "c777ce22678ae1869f990b2f31e0cd7ca109049213bfc0baf3e2205a18b21ebb"
|
317
|
+ checksum = "064473f2fd59b44fa2c9aaa60de1f9c44db5e13521e28bc85d2b92ee535ef625"
|
248
318
|
dependencies = [
|
249
319
|
"cranelift-codegen-shared",
|
250
320
|
]
|
251
321
|
|
252
322
|
[[package]]
|
253
323
|
name = "cranelift-codegen-shared"
|
254
|
- version = "0.96.3"
|
324
|
+ version = "0.110.1"
|
255
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
256
|
- checksum = "eb65884d17a1fa55990dd851c43c140afb4c06c3312cf42cfa1222c3b23f9561"
|
326
|
+ checksum = "d0f39b9ebfd2febdc2acfb9a0fca110665bcd5a6839502576307735ed07b2177"
|
257
327
|
|
258
328
|
[[package]]
|
259
329
|
name = "cranelift-control"
|
260
|
- version = "0.96.3"
|
330
|
+ version = "0.110.1"
|
261
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
- checksum = "9a0cea8abc90934d0a7ee189a29fd35fecd5c40f59ae7e6aab1805e8ab1a535e"
|
332
|
+ checksum = "94e125c189c3a1ca8dfe209fc6f46edba058a6d24e0b92aff69459a15f4711e7"
|
263
333
|
dependencies = [
|
264
334
|
"arbitrary",
|
265
335
|
]
|
266
336
|
|
267
337
|
[[package]]
|
268
338
|
name = "cranelift-entity"
|
269
|
- version = "0.96.3"
|
339
|
+ version = "0.110.1"
|
270
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
- checksum = "c2e50bebc05f2401a1320169314b62f91ad811ef20163cac00151d78e0684d4c"
|
341
|
+ checksum = "ea62eb109baec2247e1a6fa7b74c0f584b1e76e289cfd7017385b4b031fc8450"
|
272
342
|
dependencies = [
|
343
|
+ "cranelift-bitset",
|
273
344
|
"serde",
|
345
|
+ "serde_derive",
|
274
346
|
]
|
275
347
|
|
276
348
|
[[package]]
|
277
349
|
name = "cranelift-frontend"
|
278
|
- version = "0.96.3"
|
350
|
+ version = "0.110.1"
|
279
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
280
|
- checksum = "7b82ccfe704d53f669791399d417928410785132d809ec46f5e2ce069e9d17c8"
|
352
|
+ checksum = "722b089357aacb6c7528b2e59a5fe00917d61ce63448b25a3e477a5b7819fac8"
|
281
353
|
dependencies = [
|
282
354
|
"cranelift-codegen",
|
283
355
|
"log",
|
|
@@ -287,15 +359,15 @@ dependencies = [
|
287
359
|
|
288
360
|
[[package]]
|
289
361
|
name = "cranelift-isle"
|
290
|
- version = "0.96.3"
|
362
|
+ version = "0.110.1"
|
291
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
- checksum = "a2515d8e7836f9198b160b2c80aaa1f586d7749d57d6065af86223fb65b7e2c3"
|
364
|
+ checksum = "c4b5005a48288e7fc2a2991a377831c534e26929b063c379c018060727785a9b"
|
293
365
|
|
294
366
|
[[package]]
|
295
367
|
name = "cranelift-native"
|
296
|
- version = "0.96.3"
|
368
|
+ version = "0.110.1"
|
297
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
- checksum = "bcb47ffdcdac7e9fed6e4a618939773a4dc4a412fa7da9e701ae667431a10af3"
|
370
|
+ checksum = "3ae2d48f38081a9e679ad795bd36bb29bedeb5552fc1c195185bf9885fa1b16e"
|
299
371
|
dependencies = [
|
300
372
|
"cranelift-codegen",
|
301
373
|
"libc",
|
|
@@ -304,9 +376,9 @@ dependencies = [
|
304
376
|
|
305
377
|
[[package]]
|
306
378
|
name = "cranelift-wasm"
|
307
|
- version = "0.96.3"
|
379
|
+ version = "0.110.1"
|
308
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
- checksum = "852390f92c3eaa457e42be44d174ff5abbbcd10062d5963bda8ffb2505e73a71"
|
381
|
+ checksum = "25abc7b3ec5aab50546ee9a29073223d2602b49b3d73ce312bf481fadba01255"
|
310
382
|
dependencies = [
|
311
383
|
"cranelift-codegen",
|
312
384
|
"cranelift-entity",
|
|
@@ -320,55 +392,37 @@ dependencies = [
|
320
392
|
|
321
393
|
[[package]]
|
322
394
|
name = "crc32fast"
|
323
|
- version = "1.3.2"
|
395
|
+ version = "1.4.2"
|
324
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
397
|
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
326
398
|
dependencies = [
|
327
399
|
"cfg-if",
|
328
400
|
]
|
329
401
|
|
330
|
- [[package]]
|
331
|
- name = "crossbeam-channel"
|
332
|
- version = "0.5.8"
|
333
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
- checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
335
|
- dependencies = [
|
336
|
- "cfg-if",
|
337
|
- "crossbeam-utils",
|
338
|
- ]
|
339
|
-
|
340
402
|
[[package]]
|
341
403
|
name = "crossbeam-deque"
|
342
|
- version = "0.8.3"
|
404
|
+ version = "0.8.5"
|
343
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
344
|
- checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
406
|
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
345
407
|
dependencies = [
|
346
|
- "cfg-if",
|
347
408
|
"crossbeam-epoch",
|
348
409
|
"crossbeam-utils",
|
349
410
|
]
|
350
411
|
|
351
412
|
[[package]]
|
352
413
|
name = "crossbeam-epoch"
|
353
|
- version = "0.9.14"
|
414
|
+ version = "0.9.18"
|
354
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
- checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
|
416
|
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
356
417
|
dependencies = [
|
357
|
- "autocfg",
|
358
|
- "cfg-if",
|
359
418
|
"crossbeam-utils",
|
360
|
- "memoffset",
|
361
|
- "scopeguard",
|
362
419
|
]
|
363
420
|
|
364
421
|
[[package]]
|
365
422
|
name = "crossbeam-utils"
|
366
|
- version = "0.8.15"
|
423
|
+ version = "0.8.20"
|
367
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
368
|
- checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
369
|
- dependencies = [
|
370
|
- "cfg-if",
|
371
|
- ]
|
425
|
+ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
372
426
|
|
373
427
|
[[package]]
|
374
428
|
name = "crypto-common"
|
|
@@ -442,89 +496,137 @@ dependencies = [
|
442
496
|
|
443
497
|
[[package]]
|
444
498
|
name = "either"
|
445
|
- version = "1.8.1"
|
499
|
+ version = "1.13.0"
|
446
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
447
|
- checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
501
|
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
448
502
|
|
449
503
|
[[package]]
|
450
|
- name = "env_logger"
|
451
|
- version = "0.10.0"
|
504
|
+ name = "embedded-io"
|
505
|
+ version = "0.4.0"
|
452
506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
453
|
- checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
|
507
|
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
508
|
+
|
509
|
+ [[package]]
|
510
|
+ name = "encoding_rs"
|
511
|
+ version = "0.8.34"
|
512
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+ checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
454
514
|
dependencies = [
|
455
|
- "humantime",
|
456
|
- "is-terminal",
|
457
|
- "log",
|
458
|
- "regex",
|
459
|
- "termcolor",
|
515
|
+ "cfg-if",
|
460
516
|
]
|
461
517
|
|
518
|
+ [[package]]
|
519
|
+ name = "equivalent"
|
520
|
+ version = "1.0.1"
|
521
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
523
|
+
|
462
524
|
[[package]]
|
463
525
|
name = "errno"
|
464
|
- version = "0.3.1"
|
526
|
+ version = "0.3.9"
|
465
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
- checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
528
|
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
467
529
|
dependencies = [
|
468
|
- "errno-dragonfly",
|
469
|
- "libc",
|
470
|
- "windows-sys",
|
471
|
- ]
|
472
|
-
|
473
|
- [[package]]
|
474
|
- name = "errno-dragonfly"
|
475
|
- version = "0.1.2"
|
476
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
- checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
478
|
- dependencies = [
|
479
|
- "cc",
|
480
530
|
"libc",
|
531
|
+ "windows-sys 0.52.0",
|
481
532
|
]
|
482
533
|
|
483
534
|
[[package]]
|
484
535
|
name = "fallible-iterator"
|
485
|
- version = "0.2.0"
|
536
|
+ version = "0.3.0"
|
486
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
- checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
538
|
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
488
539
|
|
489
540
|
[[package]]
|
490
541
|
name = "fd-lock"
|
491
|
- version = "3.0.12"
|
542
|
+ version = "4.0.2"
|
492
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
493
|
- checksum = "39ae6b3d9530211fb3b12a95374b8b0823be812f53d09e18c5675c0146b09642"
|
544
|
+ checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947"
|
494
545
|
dependencies = [
|
495
546
|
"cfg-if",
|
496
547
|
"rustix",
|
497
|
- "windows-sys",
|
498
|
- ]
|
499
|
-
|
500
|
- [[package]]
|
501
|
- name = "file-per-thread-logger"
|
502
|
- version = "0.1.6"
|
503
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
- checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866"
|
505
|
- dependencies = [
|
506
|
- "env_logger",
|
507
|
- "log",
|
548
|
+ "windows-sys 0.52.0",
|
508
549
|
]
|
509
550
|
|
510
551
|
[[package]]
|
511
552
|
name = "form_urlencoded"
|
512
|
- version = "1.1.0"
|
553
|
+ version = "1.2.1"
|
513
554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
- checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
555
|
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
515
556
|
dependencies = [
|
516
557
|
"percent-encoding",
|
517
558
|
]
|
518
559
|
|
519
560
|
[[package]]
|
520
561
|
name = "fs-set-times"
|
521
|
- version = "0.19.1"
|
562
|
+ version = "0.20.1"
|
522
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
- checksum = "7833d0f115a013d51c55950a3b09d30e4b057be9961b709acb9b5b17a1108861"
|
564
|
+ checksum = "033b337d725b97690d86893f9de22b67b80dcc4e9ad815f348254c38119db8fb"
|
524
565
|
dependencies = [
|
525
566
|
"io-lifetimes",
|
526
567
|
"rustix",
|
527
|
- "windows-sys",
|
568
|
+ "windows-sys 0.52.0",
|
569
|
+ ]
|
570
|
+
|
571
|
+ [[package]]
|
572
|
+ name = "futures"
|
573
|
+ version = "0.3.30"
|
574
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
+ checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
576
|
+ dependencies = [
|
577
|
+ "futures-channel",
|
578
|
+ "futures-core",
|
579
|
+ "futures-io",
|
580
|
+ "futures-sink",
|
581
|
+ "futures-task",
|
582
|
+ "futures-util",
|
583
|
+ ]
|
584
|
+
|
585
|
+ [[package]]
|
586
|
+ name = "futures-channel"
|
587
|
+ version = "0.3.30"
|
588
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
590
|
+ dependencies = [
|
591
|
+ "futures-core",
|
592
|
+ "futures-sink",
|
593
|
+ ]
|
594
|
+
|
595
|
+ [[package]]
|
596
|
+ name = "futures-core"
|
597
|
+ version = "0.3.30"
|
598
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
600
|
+
|
601
|
+ [[package]]
|
602
|
+ name = "futures-io"
|
603
|
+ version = "0.3.30"
|
604
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
606
|
+
|
607
|
+ [[package]]
|
608
|
+ name = "futures-sink"
|
609
|
+ version = "0.3.30"
|
610
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
611
|
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
612
|
+
|
613
|
+ [[package]]
|
614
|
+ name = "futures-task"
|
615
|
+ version = "0.3.30"
|
616
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
618
|
+
|
619
|
+ [[package]]
|
620
|
+ name = "futures-util"
|
621
|
+ version = "0.3.30"
|
622
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
623
|
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
624
|
+ dependencies = [
|
625
|
+ "futures-core",
|
626
|
+ "futures-sink",
|
627
|
+ "futures-task",
|
628
|
+ "pin-project-lite",
|
629
|
+ "pin-utils",
|
528
630
|
]
|
529
631
|
|
530
632
|
[[package]]
|
|
@@ -542,7 +644,7 @@ version = "0.6.0"
|
542
644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
645
|
checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd"
|
544
646
|
dependencies = [
|
545
|
- "bitflags 2.3.1",
|
647
|
+ "bitflags",
|
546
648
|
"debugid",
|
547
649
|
"fxhash",
|
548
650
|
"serde",
|
|
@@ -561,9 +663,9 @@ dependencies = [
|
561
663
|
|
562
664
|
[[package]]
|
563
665
|
name = "getrandom"
|
564
|
- version = "0.2.9"
|
666
|
+ version = "0.2.15"
|
565
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
- checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
668
|
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
567
669
|
dependencies = [
|
568
670
|
"cfg-if",
|
569
671
|
"libc",
|
|
@@ -572,9 +674,9 @@ dependencies = [
|
572
674
|
|
573
675
|
[[package]]
|
574
676
|
name = "gimli"
|
575
|
- version = "0.27.2"
|
677
|
+ version = "0.28.1"
|
576
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
- checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
|
679
|
+ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
578
680
|
dependencies = [
|
579
681
|
"fallible-iterator",
|
580
682
|
"indexmap",
|
|
@@ -582,10 +684,10 @@ dependencies = [
|
582
684
|
]
|
583
685
|
|
584
686
|
[[package]]
|
585
|
- name = "hashbrown"
|
586
|
- version = "0.12.3"
|
687
|
+ name = "gimli"
|
688
|
+ version = "0.29.0"
|
587
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
- checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
690
|
+ checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
589
691
|
|
590
692
|
[[package]]
|
591
693
|
name = "hashbrown"
|
|
@@ -596,6 +698,16 @@ dependencies = [
|
596
698
|
"ahash",
|
597
699
|
]
|
598
700
|
|
701
|
+ [[package]]
|
702
|
+ name = "hashbrown"
|
703
|
+ version = "0.14.5"
|
704
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
706
|
+ dependencies = [
|
707
|
+ "ahash",
|
708
|
+ "serde",
|
709
|
+ ]
|
710
|
+
|
599
711
|
[[package]]
|
600
712
|
name = "heck"
|
601
713
|
version = "0.4.1"
|
|
@@ -603,25 +715,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
715
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
604
716
|
|
605
717
|
[[package]]
|
606
|
- name = "hermit-abi"
|
607
|
- version = "0.2.6"
|
718
|
+ name = "heck"
|
719
|
+ version = "0.5.0"
|
608
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
- checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
721
|
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
722
|
+
|
723
|
+ [[package]]
|
724
|
+ name = "hermit-abi"
|
725
|
+ version = "0.3.9"
|
726
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
|
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
728
|
+
|
729
|
+ [[package]]
|
730
|
+ name = "iana-time-zone"
|
731
|
+ version = "0.1.60"
|
732
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
733
|
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
610
734
|
dependencies = [
|
611
|
- "libc",
|
735
|
+ "android_system_properties",
|
736
|
+ "core-foundation-sys",
|
737
|
+ "iana-time-zone-haiku",
|
738
|
+ "js-sys",
|
739
|
+ "wasm-bindgen",
|
740
|
+ "windows-core",
|
612
741
|
]
|
613
742
|
|
614
743
|
[[package]]
|
615
|
- name = "hermit-abi"
|
616
|
- version = "0.3.1"
|
744
|
+ name = "iana-time-zone-haiku"
|
745
|
+ version = "0.1.2"
|
617
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
- checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
619
|
-
|
620
|
- [[package]]
|
621
|
- name = "humantime"
|
622
|
- version = "2.1.0"
|
623
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
747
|
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
748
|
+ dependencies = [
|
749
|
+ "cc",
|
750
|
+ ]
|
625
751
|
|
626
752
|
[[package]]
|
627
753
|
name = "id-arena"
|
|
@@ -631,9 +757,9 @@ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
|
631
757
|
|
632
758
|
[[package]]
|
633
759
|
name = "idna"
|
634
|
- version = "0.3.0"
|
760
|
+ version = "0.5.0"
|
635
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
- checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
762
|
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
637
763
|
dependencies = [
|
638
764
|
"unicode-bidi",
|
639
765
|
"unicode-normalization",
|
|
@@ -641,74 +767,63 @@ dependencies = [
|
641
767
|
|
642
768
|
[[package]]
|
643
769
|
name = "indexmap"
|
644
|
- version = "1.9.3"
|
770
|
+ version = "2.2.6"
|
645
771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
- checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
772
|
+ checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
647
773
|
dependencies = [
|
648
|
- "autocfg",
|
649
|
- "hashbrown 0.12.3",
|
774
|
+ "equivalent",
|
775
|
+ "hashbrown 0.14.5",
|
650
776
|
"serde",
|
651
777
|
]
|
652
778
|
|
653
779
|
[[package]]
|
654
|
- name = "io-extras"
|
655
|
- version = "0.17.4"
|
780
|
+ name = "inventory"
|
781
|
+ version = "0.3.15"
|
656
782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
- checksum = "fde93d48f0d9277f977a333eca8313695ddd5301dc96f7e02aeddcb0dd99096f"
|
783
|
+ checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
|
784
|
+
|
785
|
+ [[package]]
|
786
|
+ name = "io-extras"
|
787
|
+ version = "0.18.2"
|
788
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
789
|
+ checksum = "c9f046b9af244f13b3bd939f55d16830ac3a201e8a9ba9661bfcb03e2be72b9b"
|
658
790
|
dependencies = [
|
659
791
|
"io-lifetimes",
|
660
|
- "windows-sys",
|
792
|
+ "windows-sys 0.52.0",
|
661
793
|
]
|
662
794
|
|
663
795
|
[[package]]
|
664
796
|
name = "io-lifetimes"
|
665
|
- version = "1.0.10"
|
797
|
+ version = "2.0.3"
|
666
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
- checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
668
|
- dependencies = [
|
669
|
- "hermit-abi 0.3.1",
|
670
|
- "libc",
|
671
|
- "windows-sys",
|
672
|
- ]
|
799
|
+ checksum = "5a611371471e98973dbcab4e0ec66c31a10bc356eeb4d54a0e05eac8158fe38c"
|
673
800
|
|
674
801
|
[[package]]
|
675
802
|
name = "ipnet"
|
676
|
- version = "2.7.2"
|
803
|
+ version = "2.9.0"
|
677
804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
- checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
|
679
|
-
|
680
|
- [[package]]
|
681
|
- name = "is-terminal"
|
682
|
- version = "0.4.7"
|
683
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
- checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
|
685
|
- dependencies = [
|
686
|
- "hermit-abi 0.3.1",
|
687
|
- "io-lifetimes",
|
688
|
- "rustix",
|
689
|
- "windows-sys",
|
690
|
- ]
|
805
|
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
691
806
|
|
692
807
|
[[package]]
|
693
808
|
name = "itertools"
|
694
|
- version = "0.10.5"
|
809
|
+ version = "0.12.1"
|
695
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
- checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
811
|
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
697
812
|
dependencies = [
|
698
813
|
"either",
|
699
814
|
]
|
700
815
|
|
701
816
|
[[package]]
|
702
817
|
name = "itoa"
|
703
|
- version = "1.0.6"
|
818
|
+ version = "1.0.11"
|
704
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
- checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
820
|
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
706
821
|
|
707
822
|
[[package]]
|
708
823
|
name = "ittapi"
|
709
|
- version = "0.3.3"
|
824
|
+ version = "0.4.0"
|
710
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
711
|
- checksum = "2e648c437172ce7d3ac35ca11a068755072054826fa455a916b43524fa4a62a7"
|
826
|
+ checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
712
827
|
dependencies = [
|
713
828
|
"anyhow",
|
714
829
|
"ittapi-sys",
|
|
@@ -717,27 +832,30 @@ dependencies = [
|
717
832
|
|
718
833
|
[[package]]
|
719
834
|
name = "ittapi-sys"
|
720
|
- version = "0.3.3"
|
835
|
+ version = "0.4.0"
|
721
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
722
|
- checksum = "a9b32a4d23f72548178dde54f3c12c6b6a08598e25575c0d0fa5bd861e0dc1a5"
|
837
|
+ checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
723
838
|
dependencies = [
|
724
839
|
"cc",
|
725
840
|
]
|
726
841
|
|
727
842
|
[[package]]
|
728
843
|
name = "jobserver"
|
729
|
- version = "0.1.26"
|
844
|
+ version = "0.1.31"
|
730
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
- checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
846
|
+ checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
732
847
|
dependencies = [
|
733
848
|
"libc",
|
734
849
|
]
|
735
850
|
|
736
851
|
[[package]]
|
737
|
- name = "lazy_static"
|
738
|
- version = "1.4.0"
|
852
|
+ name = "js-sys"
|
853
|
+ version = "0.3.69"
|
739
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
740
|
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
855
|
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
856
|
+ dependencies = [
|
857
|
+ "wasm-bindgen",
|
858
|
+ ]
|
741
859
|
|
742
860
|
[[package]]
|
743
861
|
name = "leb128"
|
|
@@ -747,30 +865,43 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
747
865
|
|
748
866
|
[[package]]
|
749
867
|
name = "libc"
|
750
|
- version = "0.2.144"
|
868
|
+ version = "0.2.155"
|
751
869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
- checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
|
870
|
+ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
753
871
|
|
754
872
|
[[package]]
|
755
|
- name = "linux-raw-sys"
|
756
|
- version = "0.3.8"
|
873
|
+ name = "libm"
|
874
|
+ version = "0.2.8"
|
757
875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
- checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
876
|
+ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
759
877
|
|
760
878
|
[[package]]
|
761
|
- name = "log"
|
762
|
- version = "0.4.17"
|
879
|
+ name = "libredox"
|
880
|
+ version = "0.1.3"
|
763
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
|
- checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
882
|
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
765
883
|
dependencies = [
|
766
|
- "cfg-if",
|
884
|
+ "bitflags",
|
885
|
+ "libc",
|
767
886
|
]
|
768
887
|
|
769
888
|
[[package]]
|
770
|
- name = "mach"
|
771
|
- version = "0.3.2"
|
889
|
+ name = "linux-raw-sys"
|
890
|
+ version = "0.4.14"
|
772
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
- checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
892
|
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
893
|
+
|
894
|
+ [[package]]
|
895
|
+ name = "log"
|
896
|
+ version = "0.4.22"
|
897
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
899
|
+
|
900
|
+ [[package]]
|
901
|
+ name = "mach2"
|
902
|
+ version = "0.4.2"
|
903
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
904
|
+ checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
|
774
905
|
dependencies = [
|
775
906
|
"libc",
|
776
907
|
]
|
|
@@ -783,79 +914,135 @@ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
783
914
|
|
784
915
|
[[package]]
|
785
916
|
name = "memchr"
|
786
|
- version = "2.5.0"
|
917
|
+ version = "2.7.4"
|
787
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
788
|
- checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
919
|
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
789
920
|
|
790
921
|
[[package]]
|
791
922
|
name = "memfd"
|
792
|
- version = "0.6.3"
|
923
|
+ version = "0.6.4"
|
793
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
794
|
- checksum = "ffc89ccdc6e10d6907450f753537ebc5c5d3460d2e4e62ea74bd571db62c0f9e"
|
925
|
+ checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
795
926
|
dependencies = [
|
796
927
|
"rustix",
|
797
928
|
]
|
798
929
|
|
799
930
|
[[package]]
|
800
|
- name = "memoffset"
|
801
|
- version = "0.8.0"
|
931
|
+ name = "miniz_oxide"
|
932
|
+ version = "0.7.4"
|
802
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
803
|
- checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
934
|
+ checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
935
|
+ dependencies = [
|
936
|
+ "adler",
|
937
|
+ ]
|
938
|
+
|
939
|
+ [[package]]
|
940
|
+ name = "mio"
|
941
|
+ version = "0.8.11"
|
942
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
943
|
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
944
|
+ dependencies = [
|
945
|
+ "libc",
|
946
|
+ "wasi",
|
947
|
+ "windows-sys 0.48.0",
|
948
|
+ ]
|
949
|
+
|
950
|
+ [[package]]
|
951
|
+ name = "num-bigint"
|
952
|
+ version = "0.4.6"
|
953
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
|
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
955
|
+ dependencies = [
|
956
|
+ "num-integer",
|
957
|
+ "num-traits",
|
958
|
+ ]
|
959
|
+
|
960
|
+ [[package]]
|
961
|
+ name = "num-integer"
|
962
|
+ version = "0.1.46"
|
963
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
964
|
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
965
|
+ dependencies = [
|
966
|
+ "num-traits",
|
967
|
+ ]
|
968
|
+
|
969
|
+ [[package]]
|
970
|
+ name = "num-traits"
|
971
|
+ version = "0.2.19"
|
972
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
973
|
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
804
974
|
dependencies = [
|
805
975
|
"autocfg",
|
806
976
|
]
|
807
977
|
|
808
978
|
[[package]]
|
809
979
|
name = "num_cpus"
|
810
|
- version = "1.15.0"
|
980
|
+ version = "1.16.0"
|
811
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
812
|
- checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
982
|
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
813
983
|
dependencies = [
|
814
|
- "hermit-abi 0.2.6",
|
984
|
+ "hermit-abi",
|
815
985
|
"libc",
|
816
986
|
]
|
817
987
|
|
818
988
|
[[package]]
|
819
989
|
name = "object"
|
820
|
- version = "0.30.3"
|
990
|
+ version = "0.36.1"
|
821
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
- checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
|
992
|
+ checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
|
823
993
|
dependencies = [
|
824
994
|
"crc32fast",
|
825
|
- "hashbrown 0.13.2",
|
995
|
+ "hashbrown 0.14.5",
|
826
996
|
"indexmap",
|
827
997
|
"memchr",
|
828
998
|
]
|
829
999
|
|
830
1000
|
[[package]]
|
831
1001
|
name = "once_cell"
|
832
|
- version = "1.17.2"
|
1002
|
+ version = "1.19.0"
|
833
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
- checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b"
|
1004
|
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
835
1005
|
|
836
1006
|
[[package]]
|
837
1007
|
name = "paste"
|
838
|
- version = "1.0.12"
|
1008
|
+ version = "1.0.15"
|
839
1009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
- checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
|
1010
|
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
841
1011
|
|
842
1012
|
[[package]]
|
843
1013
|
name = "percent-encoding"
|
844
|
- version = "2.2.0"
|
1014
|
+ version = "2.3.1"
|
845
1015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
846
|
- checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
1016
|
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
847
1017
|
|
848
1018
|
[[package]]
|
849
1019
|
name = "pin-project-lite"
|
850
|
- version = "0.2.9"
|
1020
|
+ version = "0.2.14"
|
851
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
- checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
1022
|
+ checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
1023
|
+
|
1024
|
+ [[package]]
|
1025
|
+ name = "pin-utils"
|
1026
|
+ version = "0.1.0"
|
1027
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
853
1029
|
|
854
1030
|
[[package]]
|
855
1031
|
name = "pkg-config"
|
856
|
- version = "0.3.27"
|
1032
|
+ version = "0.3.30"
|
857
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
- checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
1034
|
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
1035
|
+
|
1036
|
+ [[package]]
|
1037
|
+ name = "postcard"
|
1038
|
+ version = "1.0.8"
|
1039
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1040
|
+ checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8"
|
1041
|
+ dependencies = [
|
1042
|
+ "cobs",
|
1043
|
+ "embedded-io",
|
1044
|
+ "serde",
|
1045
|
+ ]
|
859
1046
|
|
860
1047
|
[[package]]
|
861
1048
|
name = "ppv-lite86"
|
|
@@ -865,9 +1052,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
865
1052
|
|
866
1053
|
[[package]]
|
867
1054
|
name = "proc-macro2"
|
868
|
- version = "1.0.58"
|
1055
|
+ version = "1.0.86"
|
869
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
- checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8"
|
1057
|
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
871
1058
|
dependencies = [
|
872
1059
|
"unicode-ident",
|
873
1060
|
]
|
|
@@ -881,22 +1068,11 @@ dependencies = [
|
881
1068
|
"cc",
|
882
1069
|
]
|
883
1070
|
|
884
|
- [[package]]
|
885
|
- name = "pulldown-cmark"
|
886
|
- version = "0.8.0"
|
887
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
- checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8"
|
889
|
- dependencies = [
|
890
|
- "bitflags 1.3.2",
|
891
|
- "memchr",
|
892
|
- "unicase",
|
893
|
- ]
|
894
|
-
|
895
1071
|
[[package]]
|
896
1072
|
name = "quote"
|
897
|
- version = "1.0.27"
|
1073
|
+ version = "1.0.36"
|
898
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
- checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
|
1075
|
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
900
1076
|
dependencies = [
|
901
1077
|
"proc-macro2",
|
902
1078
|
]
|
|
@@ -933,9 +1109,9 @@ dependencies = [
|
933
1109
|
|
934
1110
|
[[package]]
|
935
1111
|
name = "rayon"
|
936
|
- version = "1.7.0"
|
1112
|
+ version = "1.10.0"
|
937
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
- checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
|
1114
|
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
939
1115
|
dependencies = [
|
940
1116
|
"either",
|
941
1117
|
"rayon-core",
|
|
@@ -943,41 +1119,30 @@ dependencies = [
|
943
1119
|
|
944
1120
|
[[package]]
|
945
1121
|
name = "rayon-core"
|
946
|
- version = "1.11.0"
|
1122
|
+ version = "1.12.1"
|
947
1123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
- checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
|
1124
|
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
949
1125
|
dependencies = [
|
950
|
- "crossbeam-channel",
|
951
1126
|
"crossbeam-deque",
|
952
1127
|
"crossbeam-utils",
|
953
|
- "num_cpus",
|
954
|
- ]
|
955
|
-
|
956
|
- [[package]]
|
957
|
- name = "redox_syscall"
|
958
|
- version = "0.2.16"
|
959
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
|
- checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
961
|
- dependencies = [
|
962
|
- "bitflags 1.3.2",
|
963
1128
|
]
|
964
1129
|
|
965
1130
|
[[package]]
|
966
1131
|
name = "redox_users"
|
967
|
- version = "0.4.3"
|
1132
|
+ version = "0.4.5"
|
968
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
969
|
- checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
1134
|
+ checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
970
1135
|
dependencies = [
|
971
1136
|
"getrandom",
|
972
|
- "redox_syscall",
|
1137
|
+ "libredox",
|
973
1138
|
"thiserror",
|
974
1139
|
]
|
975
1140
|
|
976
1141
|
[[package]]
|
977
1142
|
name = "regalloc2"
|
978
|
- version = "0.8.1"
|
1143
|
+ version = "0.9.3"
|
979
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
- checksum = "d4a52e724646c6c0800fc456ec43b4165d2f91fba88ceaca06d9e0b400023478"
|
1145
|
+ checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
|
981
1146
|
dependencies = [
|
982
1147
|
"hashbrown 0.13.2",
|
983
1148
|
"log",
|
|
@@ -988,9 +1153,21 @@ dependencies = [
|
988
1153
|
|
989
1154
|
[[package]]
|
990
1155
|
name = "regex"
|
991
|
- version = "1.8.1"
|
1156
|
+ version = "1.10.5"
|
992
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
- checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
|
1158
|
+ checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
1159
|
+ dependencies = [
|
1160
|
+ "aho-corasick",
|
1161
|
+ "memchr",
|
1162
|
+ "regex-automata",
|
1163
|
+ "regex-syntax",
|
1164
|
+ ]
|
1165
|
+
|
1166
|
+ [[package]]
|
1167
|
+ name = "regex-automata"
|
1168
|
+ version = "0.4.7"
|
1169
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1170
|
+ checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
994
1171
|
dependencies = [
|
995
1172
|
"aho-corasick",
|
996
1173
|
"memchr",
|
|
@@ -999,15 +1176,15 @@ dependencies = [
|
999
1176
|
|
1000
1177
|
[[package]]
|
1001
1178
|
name = "regex-syntax"
|
1002
|
- version = "0.7.1"
|
1179
|
+ version = "0.8.4"
|
1003
1180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
- checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
|
1181
|
+ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
1005
1182
|
|
1006
1183
|
[[package]]
|
1007
1184
|
name = "rustc-demangle"
|
1008
|
- version = "0.1.23"
|
1185
|
+ version = "0.1.24"
|
1009
1186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
- checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
1187
|
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1011
1188
|
|
1012
1189
|
[[package]]
|
1013
1190
|
name = "rustc-hash"
|
|
@@ -1017,48 +1194,49 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1017
1194
|
|
1018
1195
|
[[package]]
|
1019
1196
|
name = "rustix"
|
1020
|
- version = "0.37.19"
|
1197
|
+ version = "0.38.34"
|
1021
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
- checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
|
1199
|
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
1023
1200
|
dependencies = [
|
1024
|
- "bitflags 1.3.2",
|
1201
|
+ "bitflags",
|
1025
1202
|
"errno",
|
1026
|
- "io-lifetimes",
|
1027
1203
|
"itoa",
|
1028
1204
|
"libc",
|
1029
1205
|
"linux-raw-sys",
|
1030
1206
|
"once_cell",
|
1031
|
- "windows-sys",
|
1207
|
+ "windows-sys 0.52.0",
|
1032
1208
|
]
|
1033
1209
|
|
1034
1210
|
[[package]]
|
1035
1211
|
name = "rustler"
|
1036
|
- version = "0.28.0"
|
1212
|
+ version = "0.34.0"
|
1037
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1038
|
- checksum = "7d7a2f98cb272ae0548e434bb3afde626012084cbebef84542bc7afed868bd6f"
|
1214
|
+ checksum = "e94bdfa68c0388cbd725f1ca54e975956482c262599e5cced04a903eec918b7f"
|
1039
1215
|
dependencies = [
|
1040
|
- "lazy_static",
|
1216
|
+ "inventory",
|
1217
|
+ "num-bigint",
|
1041
1218
|
"rustler_codegen",
|
1042
1219
|
"rustler_sys",
|
1043
1220
|
]
|
1044
1221
|
|
1045
1222
|
[[package]]
|
1046
1223
|
name = "rustler_codegen"
|
1047
|
- version = "0.28.0"
|
1224
|
+ version = "0.34.0"
|
1048
1225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
- checksum = "2ae37fb154683a1ff13e95dfd16c15043d6aee9853ea650ca34a45bd94e319a5"
|
1226
|
+ checksum = "996dc019acb78b91b4e0c1bd6fa2cd509a835d309de762dc15213b97eac399da"
|
1050
1227
|
dependencies = [
|
1051
|
- "heck",
|
1228
|
+ "heck 0.5.0",
|
1229
|
+ "inventory",
|
1052
1230
|
"proc-macro2",
|
1053
1231
|
"quote",
|
1054
|
- "syn 2.0.16",
|
1232
|
+ "syn",
|
1055
1233
|
]
|
1056
1234
|
|
1057
1235
|
[[package]]
|
1058
1236
|
name = "rustler_sys"
|
1059
|
- version = "2.2.1"
|
1237
|
+ version = "2.4.2"
|
1060
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
- checksum = "ae0eb19e2fdf4abc3662441087fc499a58b7550822cc8007e79f15c40157c883"
|
1239
|
+ checksum = "3914a75a147934353c3772a77b774c79fdf80ba84e8347f52a50df0c164aaff2"
|
1062
1240
|
dependencies = [
|
1063
1241
|
"regex",
|
1064
1242
|
"unreachable",
|
|
@@ -1066,41 +1244,44 @@ dependencies = [
|
1066
1244
|
|
1067
1245
|
[[package]]
|
1068
1246
|
name = "ryu"
|
1069
|
- version = "1.0.13"
|
1247
|
+ version = "1.0.18"
|
1070
1248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1071
|
- checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
1249
|
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1072
1250
|
|
1073
1251
|
[[package]]
|
1074
|
- name = "scopeguard"
|
1075
|
- version = "1.1.0"
|
1252
|
+ name = "semver"
|
1253
|
+ version = "1.0.23"
|
1076
1254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1077
|
- checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1255
|
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
1256
|
+ dependencies = [
|
1257
|
+ "serde",
|
1258
|
+ ]
|
1078
1259
|
|
1079
1260
|
[[package]]
|
1080
1261
|
name = "serde"
|
1081
|
- version = "1.0.163"
|
1262
|
+ version = "1.0.204"
|
1082
1263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
- checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
|
1264
|
+ checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
1084
1265
|
dependencies = [
|
1085
1266
|
"serde_derive",
|
1086
1267
|
]
|
1087
1268
|
|
1088
1269
|
[[package]]
|
1089
1270
|
name = "serde_derive"
|
1090
|
- version = "1.0.163"
|
1271
|
+ version = "1.0.204"
|
1091
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
- checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
|
1273
|
+ checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
1093
1274
|
dependencies = [
|
1094
1275
|
"proc-macro2",
|
1095
1276
|
"quote",
|
1096
|
- "syn 2.0.16",
|
1277
|
+ "syn",
|
1097
1278
|
]
|
1098
1279
|
|
1099
1280
|
[[package]]
|
1100
1281
|
name = "serde_json"
|
1101
|
- version = "1.0.96"
|
1282
|
+ version = "1.0.120"
|
1102
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
- checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
|
1284
|
+ checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
1104
1285
|
dependencies = [
|
1105
1286
|
"itoa",
|
1106
1287
|
"ryu",
|
|
@@ -1108,10 +1289,19 @@ dependencies = [
|
1108
1289
|
]
|
1109
1290
|
|
1110
1291
|
[[package]]
|
1111
|
- name = "sha2"
|
1112
|
- version = "0.10.6"
|
1292
|
+ name = "serde_spanned"
|
1293
|
+ version = "0.6.6"
|
1113
1294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
- checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
1295
|
+ checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
|
1296
|
+ dependencies = [
|
1297
|
+ "serde",
|
1298
|
+ ]
|
1299
|
+
|
1300
|
+ [[package]]
|
1301
|
+ name = "sha2"
|
1302
|
+ version = "0.10.8"
|
1303
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304
|
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
1115
1305
|
dependencies = [
|
1116
1306
|
"cfg-if",
|
1117
1307
|
"cpufeatures",
|
|
@@ -1135,9 +1325,28 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
1135
1325
|
|
1136
1326
|
[[package]]
|
1137
1327
|
name = "smallvec"
|
1138
|
- version = "1.10.0"
|
1328
|
+ version = "1.13.2"
|
1139
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
- checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
1330
|
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
1331
|
+ dependencies = [
|
1332
|
+ "serde",
|
1333
|
+ ]
|
1334
|
+
|
1335
|
+ [[package]]
|
1336
|
+ name = "socket2"
|
1337
|
+ version = "0.5.7"
|
1338
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1339
|
+ checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
1340
|
+ dependencies = [
|
1341
|
+ "libc",
|
1342
|
+ "windows-sys 0.52.0",
|
1343
|
+ ]
|
1344
|
+
|
1345
|
+ [[package]]
|
1346
|
+ name = "sptr"
|
1347
|
+ version = "0.3.2"
|
1348
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1349
|
+ checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
1141
1350
|
|
1142
1351
|
[[package]]
|
1143
1352
|
name = "stable_deref_trait"
|
|
@@ -1147,20 +1356,9 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1147
1356
|
|
1148
1357
|
[[package]]
|
1149
1358
|
name = "syn"
|
1150
|
- version = "1.0.109"
|
1359
|
+ version = "2.0.72"
|
1151
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
1153
|
- dependencies = [
|
1154
|
- "proc-macro2",
|
1155
|
- "quote",
|
1156
|
- "unicode-ident",
|
1157
|
- ]
|
1158
|
-
|
1159
|
- [[package]]
|
1160
|
- name = "syn"
|
1161
|
- version = "2.0.16"
|
1162
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
- checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
|
1361
|
+ checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
1164
1362
|
dependencies = [
|
1165
1363
|
"proc-macro2",
|
1166
1364
|
"quote",
|
|
@@ -1169,60 +1367,60 @@ dependencies = [
|
1169
1367
|
|
1170
1368
|
[[package]]
|
1171
1369
|
name = "system-interface"
|
1172
|
- version = "0.25.7"
|
1370
|
+ version = "0.27.2"
|
1173
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1174
|
- checksum = "928ebd55ab758962e230f51ca63735c5b283f26292297c81404289cda5d78631"
|
1372
|
+ checksum = "b858526d22750088a9b3cf2e3c2aacebd5377f13adeec02860c30d09113010a6"
|
1175
1373
|
dependencies = [
|
1176
|
- "bitflags 1.3.2",
|
1374
|
+ "bitflags",
|
1177
1375
|
"cap-fs-ext",
|
1178
1376
|
"cap-std",
|
1179
1377
|
"fd-lock",
|
1180
1378
|
"io-lifetimes",
|
1181
1379
|
"rustix",
|
1182
|
- "windows-sys",
|
1380
|
+ "windows-sys 0.52.0",
|
1183
1381
|
"winx",
|
1184
1382
|
]
|
1185
1383
|
|
1186
1384
|
[[package]]
|
1187
1385
|
name = "target-lexicon"
|
1188
|
- version = "0.12.7"
|
1386
|
+ version = "0.12.15"
|
1189
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1190
|
- checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5"
|
1388
|
+ checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
|
1191
1389
|
|
1192
1390
|
[[package]]
|
1193
1391
|
name = "termcolor"
|
1194
|
- version = "1.2.0"
|
1392
|
+ version = "1.4.1"
|
1195
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1196
|
- checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
|
1394
|
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
1197
1395
|
dependencies = [
|
1198
1396
|
"winapi-util",
|
1199
1397
|
]
|
1200
1398
|
|
1201
1399
|
[[package]]
|
1202
1400
|
name = "thiserror"
|
1203
|
- version = "1.0.40"
|
1401
|
+ version = "1.0.63"
|
1204
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1205
|
- checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
1403
|
+ checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
1206
1404
|
dependencies = [
|
1207
1405
|
"thiserror-impl",
|
1208
1406
|
]
|
1209
1407
|
|
1210
1408
|
[[package]]
|
1211
1409
|
name = "thiserror-impl"
|
1212
|
- version = "1.0.40"
|
1410
|
+ version = "1.0.63"
|
1213
1411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1214
|
- checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
1412
|
+ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
1215
1413
|
dependencies = [
|
1216
1414
|
"proc-macro2",
|
1217
1415
|
"quote",
|
1218
|
- "syn 2.0.16",
|
1416
|
+ "syn",
|
1219
1417
|
]
|
1220
1418
|
|
1221
1419
|
[[package]]
|
1222
1420
|
name = "tinyvec"
|
1223
|
- version = "1.6.0"
|
1421
|
+ version = "1.8.0"
|
1224
1422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1225
|
- checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
1423
|
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
1226
1424
|
dependencies = [
|
1227
1425
|
"tinyvec_macros",
|
1228
1426
|
]
|
|
@@ -1234,21 +1432,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
1432
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1235
1433
|
|
1236
1434
|
[[package]]
|
1237
|
- name = "toml"
|
1238
|
- version = "0.5.11"
|
1435
|
+ name = "tokio"
|
1436
|
+ version = "1.38.1"
|
1239
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
- checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
1438
|
+ checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df"
|
1439
|
+ dependencies = [
|
1440
|
+ "backtrace",
|
1441
|
+ "bytes",
|
1442
|
+ "libc",
|
1443
|
+ "mio",
|
1444
|
+ "num_cpus",
|
1445
|
+ "pin-project-lite",
|
1446
|
+ "socket2",
|
1447
|
+ "windows-sys 0.48.0",
|
1448
|
+ ]
|
1449
|
+
|
1450
|
+ [[package]]
|
1451
|
+ name = "toml"
|
1452
|
+ version = "0.8.15"
|
1453
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1454
|
+ checksum = "ac2caab0bf757388c6c0ae23b3293fdb463fee59434529014f85e3263b995c28"
|
1455
|
+ dependencies = [
|
1456
|
+ "serde",
|
1457
|
+ "serde_spanned",
|
1458
|
+ "toml_datetime",
|
1459
|
+ "toml_edit",
|
1460
|
+ ]
|
1461
|
+
|
1462
|
+ [[package]]
|
1463
|
+ name = "toml_datetime"
|
1464
|
+ version = "0.6.6"
|
1465
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1466
|
+ checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
|
1241
1467
|
dependencies = [
|
1242
1468
|
"serde",
|
1243
1469
|
]
|
1244
1470
|
|
1245
1471
|
[[package]]
|
1246
|
- name = "tracing"
|
1247
|
- version = "0.1.37"
|
1472
|
+ name = "toml_edit"
|
1473
|
+ version = "0.22.16"
|
1248
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1249
|
- checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
1475
|
+ checksum = "278f3d518e152219c994ce877758516bca5e118eaed6996192a774fb9fbf0788"
|
1476
|
+ dependencies = [
|
1477
|
+ "indexmap",
|
1478
|
+ "serde",
|
1479
|
+ "serde_spanned",
|
1480
|
+ "toml_datetime",
|
1481
|
+ "winnow",
|
1482
|
+ ]
|
1483
|
+
|
1484
|
+ [[package]]
|
1485
|
+ name = "tracing"
|
1486
|
+ version = "0.1.40"
|
1487
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
1250
1489
|
dependencies = [
|
1251
|
- "cfg-if",
|
1252
1490
|
"log",
|
1253
1491
|
"pin-project-lite",
|
1254
1492
|
"tracing-attributes",
|
|
@@ -1257,65 +1495,56 @@ dependencies = [
|
1257
1495
|
|
1258
1496
|
[[package]]
|
1259
1497
|
name = "tracing-attributes"
|
1260
|
- version = "0.1.24"
|
1498
|
+ version = "0.1.27"
|
1261
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1262
|
- checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
|
1500
|
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
1263
1501
|
dependencies = [
|
1264
1502
|
"proc-macro2",
|
1265
1503
|
"quote",
|
1266
|
- "syn 2.0.16",
|
1504
|
+ "syn",
|
1267
1505
|
]
|
1268
1506
|
|
1269
1507
|
[[package]]
|
1270
1508
|
name = "tracing-core"
|
1271
|
- version = "0.1.31"
|
1509
|
+ version = "0.1.32"
|
1272
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
- checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
|
1511
|
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
1274
1512
|
dependencies = [
|
1275
1513
|
"once_cell",
|
1276
1514
|
]
|
1277
1515
|
|
1278
1516
|
[[package]]
|
1279
1517
|
name = "typenum"
|
1280
|
- version = "1.16.0"
|
1518
|
+ version = "1.17.0"
|
1281
1519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1282
|
- checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
1283
|
-
|
1284
|
- [[package]]
|
1285
|
- name = "unicase"
|
1286
|
- version = "2.6.0"
|
1287
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
1288
|
- checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
1289
|
- dependencies = [
|
1290
|
- "version_check",
|
1291
|
- ]
|
1520
|
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
1292
1521
|
|
1293
1522
|
[[package]]
|
1294
1523
|
name = "unicode-bidi"
|
1295
|
- version = "0.3.13"
|
1524
|
+ version = "0.3.15"
|
1296
1525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1297
|
- checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
1526
|
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
1298
1527
|
|
1299
1528
|
[[package]]
|
1300
1529
|
name = "unicode-ident"
|
1301
|
- version = "1.0.8"
|
1530
|
+ version = "1.0.12"
|
1302
1531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1303
|
- checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
1532
|
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
1304
1533
|
|
1305
1534
|
[[package]]
|
1306
1535
|
name = "unicode-normalization"
|
1307
|
- version = "0.1.22"
|
1536
|
+ version = "0.1.23"
|
1308
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1309
|
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
1538
|
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
1310
1539
|
dependencies = [
|
1311
1540
|
"tinyvec",
|
1312
1541
|
]
|
1313
1542
|
|
1314
1543
|
[[package]]
|
1315
1544
|
name = "unicode-width"
|
1316
|
- version = "0.1.10"
|
1545
|
+ version = "0.1.13"
|
1317
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
1547
|
+ checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
1319
1548
|
|
1320
1549
|
[[package]]
|
1321
1550
|
name = "unicode-xid"
|
|
@@ -1334,9 +1563,9 @@ dependencies = [
|
1334
1563
|
|
1335
1564
|
[[package]]
|
1336
1565
|
name = "url"
|
1337
|
- version = "2.3.1"
|
1566
|
+ version = "2.5.2"
|
1338
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1339
|
- checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
1568
|
+ checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
1340
1569
|
dependencies = [
|
1341
1570
|
"form_urlencoded",
|
1342
1571
|
"idna",
|
|
@@ -1345,9 +1574,9 @@ dependencies = [
|
1345
1574
|
|
1346
1575
|
[[package]]
|
1347
1576
|
name = "uuid"
|
1348
|
- version = "1.3.3"
|
1577
|
+ version = "1.10.0"
|
1349
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1350
|
- checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
|
1579
|
+ checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
1351
1580
|
|
1352
1581
|
[[package]]
|
1353
1582
|
name = "version_check"
|
|
@@ -1368,13 +1597,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
1597
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1369
1598
|
|
1370
1599
|
[[package]]
|
1371
|
- name = "wasi-cap-std-sync"
|
1372
|
- version = "9.0.1"
|
1600
|
+ name = "wasi-common"
|
1601
|
+ version = "23.0.1"
|
1373
1602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
- checksum = "4096c4ef7e44b1a74463464153469b87826e29309db80167a67cbdfdc16240a6"
|
1603
|
+ checksum = "e25c9f64184fa9950336db9bd72ae8dae28134f24986257ad0d5d7eea075feb5"
|
1375
1604
|
dependencies = [
|
1376
1605
|
"anyhow",
|
1377
|
- "async-trait",
|
1606
|
+ "bitflags",
|
1378
1607
|
"cap-fs-ext",
|
1379
1608
|
"cap-rand",
|
1380
1609
|
"cap-std",
|
|
@@ -1382,47 +1611,92 @@ dependencies = [
|
1382
1611
|
"fs-set-times",
|
1383
1612
|
"io-extras",
|
1384
1613
|
"io-lifetimes",
|
1385
|
- "is-terminal",
|
1614
|
+ "log",
|
1386
1615
|
"once_cell",
|
1387
1616
|
"rustix",
|
1388
1617
|
"system-interface",
|
1389
|
- "tracing",
|
1390
|
- "wasi-common",
|
1391
|
- "windows-sys",
|
1392
|
- ]
|
1393
|
-
|
1394
|
- [[package]]
|
1395
|
- name = "wasi-common"
|
1396
|
- version = "9.0.1"
|
1397
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
1398
|
- checksum = "f2ff11918dcda936b8f32ed6c73162317b2a467be1875d29b90980183acc34d1"
|
1399
|
- dependencies = [
|
1400
|
- "anyhow",
|
1401
|
- "bitflags 1.3.2",
|
1402
|
- "cap-rand",
|
1403
|
- "cap-std",
|
1404
|
- "io-extras",
|
1405
|
- "log",
|
1406
|
- "rustix",
|
1407
1618
|
"thiserror",
|
1408
1619
|
"tracing",
|
1409
1620
|
"wasmtime",
|
1410
1621
|
"wiggle",
|
1411
|
- "windows-sys",
|
1622
|
+ "windows-sys 0.52.0",
|
1623
|
+ ]
|
1624
|
+
|
1625
|
+ [[package]]
|
1626
|
+ name = "wasm-bindgen"
|
1627
|
+ version = "0.2.92"
|
1628
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1629
|
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
1630
|
+ dependencies = [
|
1631
|
+ "cfg-if",
|
1632
|
+ "wasm-bindgen-macro",
|
1633
|
+ ]
|
1634
|
+
|
1635
|
+ [[package]]
|
1636
|
+ name = "wasm-bindgen-backend"
|
1637
|
+ version = "0.2.92"
|
1638
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1639
|
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
1640
|
+ dependencies = [
|
1641
|
+ "bumpalo",
|
1642
|
+ "log",
|
1643
|
+ "once_cell",
|
1644
|
+ "proc-macro2",
|
1645
|
+ "quote",
|
1646
|
+ "syn",
|
1647
|
+ "wasm-bindgen-shared",
|
1648
|
+ ]
|
1649
|
+
|
1650
|
+ [[package]]
|
1651
|
+ name = "wasm-bindgen-macro"
|
1652
|
+ version = "0.2.92"
|
1653
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1654
|
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
1655
|
+ dependencies = [
|
1656
|
+ "quote",
|
1657
|
+ "wasm-bindgen-macro-support",
|
1658
|
+ ]
|
1659
|
+
|
1660
|
+ [[package]]
|
1661
|
+ name = "wasm-bindgen-macro-support"
|
1662
|
+ version = "0.2.92"
|
1663
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
1665
|
+ dependencies = [
|
1666
|
+ "proc-macro2",
|
1667
|
+ "quote",
|
1668
|
+ "syn",
|
1669
|
+ "wasm-bindgen-backend",
|
1670
|
+ "wasm-bindgen-shared",
|
1671
|
+ ]
|
1672
|
+
|
1673
|
+ [[package]]
|
1674
|
+ name = "wasm-bindgen-shared"
|
1675
|
+ version = "0.2.92"
|
1676
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1677
|
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
1678
|
+
|
1679
|
+ [[package]]
|
1680
|
+ name = "wasm-encoder"
|
1681
|
+ version = "0.212.0"
|
1682
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1683
|
+ checksum = "501940df4418b8929eb6d52f1aade1fdd15a5b86c92453cb696e3c906bd3fc33"
|
1684
|
+ dependencies = [
|
1685
|
+ "leb128",
|
1412
1686
|
]
|
1413
1687
|
|
1414
1688
|
[[package]]
|
1415
1689
|
name = "wasm-encoder"
|
1416
|
- version = "0.29.0"
|
1690
|
+ version = "0.214.0"
|
1417
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1418
|
- checksum = "18c41dbd92eaebf3612a39be316540b8377c871cb9bde6b064af962984912881"
|
1692
|
+ checksum = "ff694f02a8d7a50b6922b197ae03883fbf18cdb2ae9fbee7b6148456f5f44041"
|
1419
1693
|
dependencies = [
|
1420
1694
|
"leb128",
|
1421
1695
|
]
|
1422
1696
|
|
1423
1697
|
[[package]]
|
1424
1698
|
name = "wasmex"
|
1425
|
- version = "0.8.3"
|
1699
|
+ version = "0.9.0"
|
1426
1700
|
dependencies = [
|
1427
1701
|
"once_cell",
|
1428
1702
|
"rand",
|
|
@@ -1436,88 +1710,124 @@ dependencies = [
|
1436
1710
|
|
1437
1711
|
[[package]]
|
1438
1712
|
name = "wasmparser"
|
1439
|
- version = "0.103.0"
|
1713
|
+ version = "0.212.0"
|
1440
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1441
|
- checksum = "2c437373cac5ea84f1113d648d51f71751ffbe3d90c00ae67618cf20d0b5ee7b"
|
1715
|
+ checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8"
|
1442
1716
|
dependencies = [
|
1717
|
+ "ahash",
|
1718
|
+ "bitflags",
|
1719
|
+ "hashbrown 0.14.5",
|
1443
1720
|
"indexmap",
|
1444
|
- "url",
|
1721
|
+ "semver",
|
1722
|
+ "serde",
|
1723
|
+ ]
|
1724
|
+
|
1725
|
+ [[package]]
|
1726
|
+ name = "wasmprinter"
|
1727
|
+ version = "0.212.0"
|
1728
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1729
|
+ checksum = "dfac65326cc561112af88c3028f6dfdb140acff67ede33a8e86be2dc6b8956f7"
|
1730
|
+ dependencies = [
|
1731
|
+ "anyhow",
|
1732
|
+ "termcolor",
|
1733
|
+ "wasmparser",
|
1445
1734
|
]
|
1446
1735
|
|
1447
1736
|
[[package]]
|
1448
1737
|
name = "wasmtime"
|
1449
|
- version = "9.0.3"
|
1738
|
+ version = "23.0.1"
|
1450
1739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1451
|
- checksum = "aa0f72886c3264eb639f50188d1eb98b975564130292fea8deb4facf91ca7258"
|
1740
|
+ checksum = "8945e69ec96e5d36cbe1aa2e88e28f988562dd3b5133578c44aae20ea2bcdb40"
|
1452
1741
|
dependencies = [
|
1742
|
+ "addr2line 0.21.0",
|
1453
1743
|
"anyhow",
|
1454
1744
|
"async-trait",
|
1455
|
- "bincode",
|
1745
|
+ "bitflags",
|
1456
1746
|
"bumpalo",
|
1747
|
+ "cc",
|
1457
1748
|
"cfg-if",
|
1749
|
+ "encoding_rs",
|
1458
1750
|
"fxprof-processed-profile",
|
1751
|
+ "gimli 0.28.1",
|
1752
|
+ "hashbrown 0.14.5",
|
1459
1753
|
"indexmap",
|
1754
|
+ "ittapi",
|
1460
1755
|
"libc",
|
1756
|
+ "libm",
|
1461
1757
|
"log",
|
1758
|
+ "mach2",
|
1759
|
+ "memfd",
|
1462
1760
|
"object",
|
1463
1761
|
"once_cell",
|
1464
1762
|
"paste",
|
1763
|
+ "postcard",
|
1465
1764
|
"psm",
|
1466
1765
|
"rayon",
|
1766
|
+ "rustix",
|
1767
|
+ "semver",
|
1467
1768
|
"serde",
|
1769
|
+ "serde_derive",
|
1468
1770
|
"serde_json",
|
1771
|
+ "smallvec",
|
1772
|
+ "sptr",
|
1469
1773
|
"target-lexicon",
|
1774
|
+ "wasm-encoder 0.212.0",
|
1470
1775
|
"wasmparser",
|
1776
|
+ "wasmtime-asm-macros",
|
1471
1777
|
"wasmtime-cache",
|
1472
1778
|
"wasmtime-component-macro",
|
1779
|
+ "wasmtime-component-util",
|
1473
1780
|
"wasmtime-cranelift",
|
1474
1781
|
"wasmtime-environ",
|
1475
1782
|
"wasmtime-fiber",
|
1476
|
- "wasmtime-jit",
|
1477
|
- "wasmtime-runtime",
|
1783
|
+ "wasmtime-jit-debug",
|
1784
|
+ "wasmtime-jit-icache-coherence",
|
1785
|
+ "wasmtime-slab",
|
1786
|
+ "wasmtime-versioned-export-macros",
|
1787
|
+ "wasmtime-winch",
|
1478
1788
|
"wat",
|
1479
|
- "windows-sys",
|
1789
|
+ "windows-sys 0.52.0",
|
1480
1790
|
]
|
1481
1791
|
|
1482
1792
|
[[package]]
|
1483
1793
|
name = "wasmtime-asm-macros"
|
1484
|
- version = "9.0.3"
|
1794
|
+ version = "23.0.1"
|
1485
1795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
- checksum = "a18391ed41ca957eecdbe64c51879b75419cbc52e2d8663fe82945b28b4f19da"
|
1796
|
+ checksum = "964c3b3342547a51e0d2702eae3a2d2be215d16b55a14e2e786b11c4931b7f08"
|
1487
1797
|
dependencies = [
|
1488
1798
|
"cfg-if",
|
1489
1799
|
]
|
1490
1800
|
|
1491
1801
|
[[package]]
|
1492
1802
|
name = "wasmtime-cache"
|
1493
|
- version = "9.0.3"
|
1803
|
+ version = "23.0.1"
|
1494
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1495
|
- checksum = "dfd5ef82889a6a35b3790025b3fd33e6ee4902a5408c09f716c771a38c47cd10"
|
1805
|
+ checksum = "ba2577db54531c36d875a89c5baf92dd860dd0cc256063ba710f28f36c4e9148"
|
1496
1806
|
dependencies = [
|
1497
1807
|
"anyhow",
|
1498
1808
|
"base64",
|
1499
|
- "bincode",
|
1500
1809
|
"directories-next",
|
1501
|
- "file-per-thread-logger",
|
1502
1810
|
"log",
|
1811
|
+ "postcard",
|
1503
1812
|
"rustix",
|
1504
1813
|
"serde",
|
1814
|
+ "serde_derive",
|
1505
1815
|
"sha2",
|
1506
1816
|
"toml",
|
1507
|
- "windows-sys",
|
1817
|
+ "windows-sys 0.52.0",
|
1508
1818
|
"zstd",
|
1509
1819
|
]
|
1510
1820
|
|
1511
1821
|
[[package]]
|
1512
1822
|
name = "wasmtime-component-macro"
|
1513
|
- version = "9.0.3"
|
1823
|
+ version = "23.0.1"
|
1514
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1515
|
- checksum = "b31baf908d484e93b18fd31f47af5072aa812d3af5ee4d8323295b48240a9ada"
|
1825
|
+ checksum = "0e9a60f3dfc8a825214be6e3e8e4fab280ea9d46ea2f4db11d958e754be021ae"
|
1516
1826
|
dependencies = [
|
1517
1827
|
"anyhow",
|
1518
1828
|
"proc-macro2",
|
1519
1829
|
"quote",
|
1520
|
- "syn 1.0.109",
|
1830
|
+ "syn",
|
1521
1831
|
"wasmtime-component-util",
|
1522
1832
|
"wasmtime-wit-bindgen",
|
1523
1833
|
"wit-parser",
|
|
@@ -1525,187 +1835,188 @@ dependencies = [
|
1525
1835
|
|
1526
1836
|
[[package]]
|
1527
1837
|
name = "wasmtime-component-util"
|
1528
|
- version = "9.0.3"
|
1838
|
+ version = "23.0.1"
|
1529
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
- checksum = "daff76cac73c9a1bd0bc201d5304e20dc0724b2c34c029b0c91e10e44c1f47a1"
|
1840
|
+ checksum = "2bd9555175ad59d13fd353c2a6d9bc92f47f3496fc2b92e84eaa9e6edf048f3c"
|
1531
1841
|
|
1532
1842
|
[[package]]
|
1533
1843
|
name = "wasmtime-cranelift"
|
1534
|
- version = "9.0.3"
|
1844
|
+ version = "23.0.1"
|
1535
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1536
|
- checksum = "a2495036d05eb1e79ecf22e092eeacd279dcf24b4fcab77fb4cf8ef9bd42c3ea"
|
1846
|
+ checksum = "b7ab12460e903933b1122d0c7ca5eb1a6160574870a5b110891a4cc96ef6ec3a"
|
1537
1847
|
dependencies = [
|
1538
1848
|
"anyhow",
|
1849
|
+ "cfg-if",
|
1539
1850
|
"cranelift-codegen",
|
1540
1851
|
"cranelift-control",
|
1541
1852
|
"cranelift-entity",
|
1542
1853
|
"cranelift-frontend",
|
1543
1854
|
"cranelift-native",
|
1544
1855
|
"cranelift-wasm",
|
1545
|
- "gimli",
|
1856
|
+ "gimli 0.28.1",
|
1546
1857
|
"log",
|
1547
1858
|
"object",
|
1548
1859
|
"target-lexicon",
|
1549
1860
|
"thiserror",
|
1550
1861
|
"wasmparser",
|
1551
|
- "wasmtime-cranelift-shared",
|
1552
|
- "wasmtime-environ",
|
1553
|
- ]
|
1554
|
-
|
1555
|
- [[package]]
|
1556
|
- name = "wasmtime-cranelift-shared"
|
1557
|
- version = "9.0.3"
|
1558
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
1559
|
- checksum = "ef677f7b0d3f3b73275675486d791f1e85e7c24afe8dd367c6b9950028906330"
|
1560
|
- dependencies = [
|
1561
|
- "anyhow",
|
1562
|
- "cranelift-codegen",
|
1563
|
- "cranelift-control",
|
1564
|
- "cranelift-native",
|
1565
|
- "gimli",
|
1566
|
- "object",
|
1567
|
- "target-lexicon",
|
1568
1862
|
"wasmtime-environ",
|
1863
|
+ "wasmtime-versioned-export-macros",
|
1569
1864
|
]
|
1570
1865
|
|
1571
1866
|
[[package]]
|
1572
1867
|
name = "wasmtime-environ"
|
1573
|
- version = "9.0.3"
|
1868
|
+ version = "23.0.1"
|
1574
1869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1575
|
- checksum = "2d03356374ffafa881c5f972529d2bb11ce48fe2736285e2b0ad72c6d554257b"
|
1870
|
+ checksum = "9e52faba13550fed76d5ffe75ec7cada73109b9324c4dabcaf18b3165107010d"
|
1576
1871
|
dependencies = [
|
1577
1872
|
"anyhow",
|
1873
|
+ "cpp_demangle",
|
1874
|
+ "cranelift-bitset",
|
1578
1875
|
"cranelift-entity",
|
1579
|
- "gimli",
|
1876
|
+ "gimli 0.28.1",
|
1580
1877
|
"indexmap",
|
1581
1878
|
"log",
|
1582
1879
|
"object",
|
1880
|
+ "postcard",
|
1881
|
+ "rustc-demangle",
|
1882
|
+ "semver",
|
1583
1883
|
"serde",
|
1884
|
+ "serde_derive",
|
1584
1885
|
"target-lexicon",
|
1585
|
- "thiserror",
|
1886
|
+ "wasm-encoder 0.212.0",
|
1586
1887
|
"wasmparser",
|
1888
|
+ "wasmprinter",
|
1889
|
+ "wasmtime-component-util",
|
1587
1890
|
"wasmtime-types",
|
1588
1891
|
]
|
1589
1892
|
|
1590
1893
|
[[package]]
|
1591
1894
|
name = "wasmtime-fiber"
|
1592
|
- version = "9.0.3"
|
1895
|
+ version = "23.0.1"
|
1593
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1594
|
- checksum = "3ecb992732d5fc99c14e3752f6b9110ec5ace88da15d843f2b80f2b789b182ea"
|
1897
|
+ checksum = "9ad6a540bc919350909817c3d72383007dd9386d60b74d0d728761284627feb1"
|
1595
1898
|
dependencies = [
|
1899
|
+ "anyhow",
|
1596
1900
|
"cc",
|
1597
1901
|
"cfg-if",
|
1598
1902
|
"rustix",
|
1599
1903
|
"wasmtime-asm-macros",
|
1600
|
- "windows-sys",
|
1601
|
- ]
|
1602
|
-
|
1603
|
- [[package]]
|
1604
|
- name = "wasmtime-jit"
|
1605
|
- version = "9.0.3"
|
1606
|
- source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
- checksum = "e5374f0d2ee0069391dd9348f148802846b2b3e0af650385f9c56b3012d3c5d1"
|
1608
|
- dependencies = [
|
1609
|
- "addr2line",
|
1610
|
- "anyhow",
|
1611
|
- "bincode",
|
1612
|
- "cfg-if",
|
1613
|
- "cpp_demangle",
|
1614
|
- "gimli",
|
1615
|
- "ittapi",
|
1616
|
- "log",
|
1617
|
- "object",
|
1618
|
- "rustc-demangle",
|
1619
|
- "serde",
|
1620
|
- "target-lexicon",
|
1621
|
- "wasmtime-environ",
|
1622
|
- "wasmtime-jit-debug",
|
1623
|
- "wasmtime-jit-icache-coherence",
|
1624
|
- "wasmtime-runtime",
|
1625
|
- "windows-sys",
|
1904
|
+ "wasmtime-versioned-export-macros",
|
1905
|
+ "windows-sys 0.52.0",
|
1626
1906
|
]
|
1627
1907
|
|
1628
1908
|
[[package]]
|
1629
1909
|
name = "wasmtime-jit-debug"
|
1630
|
- version = "9.0.3"
|
1910
|
+ version = "23.0.1"
|
1631
1911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1632
|
- checksum = "102653b177225bfdd2da41cc385965d4bf6bc10cf14ec7b306bc9b015fb01c22"
|
1912
|
+ checksum = "f71632cb3d01bc456b010689c554caf0f36e9040ffd357f097fdb8d42d09f710"
|
1633
1913
|
dependencies = [
|
1634
1914
|
"object",
|
1635
1915
|
"once_cell",
|
1636
1916
|
"rustix",
|
1917
|
+ "wasmtime-versioned-export-macros",
|
1637
1918
|
]
|
1638
1919
|
|
1639
1920
|
[[package]]
|
1640
1921
|
name = "wasmtime-jit-icache-coherence"
|
1641
|
- version = "9.0.3"
|
1922
|
+ version = "23.0.1"
|
1642
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
- checksum = "374ff63b3eb41db57c56682a9ef7737d2c9efa801f5dbf9da93941c9dd436a06"
|
1924
|
+ checksum = "7fddf3e2980fb1d123d1fcac55189e417fdd3dba4f62139b5a0a1f9efe5669d5"
|
1644
1925
|
dependencies = [
|
1926
|
+ "anyhow",
|
1645
1927
|
"cfg-if",
|
1646
1928
|
"libc",
|
1647
|
- "windows-sys",
|
1929
|
+ "windows-sys 0.52.0",
|
1648
1930
|
]
|
1649
1931
|
|
1650
1932
|
[[package]]
|
1651
|
- name = "wasmtime-runtime"
|
1652
|
- version = "9.0.3"
|
1933
|
+ name = "wasmtime-slab"
|
1934
|
+ version = "23.0.1"
|
1653
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1654
|
- checksum = "9b1b832f19099066ebd26e683121d331f12cf98f158eac0f889972854413b46f"
|
1655
|
- dependencies = [
|
1656
|
- "anyhow",
|
1657
|
- "cc",
|
1658
|
- "cfg-if",
|
1659
|
- "indexmap",
|
1660
|
- "libc",
|
1661
|
- "log",
|
1662
|
- "mach",
|
1663
|
- "memfd",
|
1664
|
- "memoffset",
|
1665
|
- "paste",
|
1666
|
- "rand",
|
1667
|
- "rustix",
|
1668
|
- "wasmtime-asm-macros",
|
1669
|
- "wasmtime-environ",
|
1670
|
- "wasmtime-fiber",
|
1671
|
- "wasmtime-jit-debug",
|
1672
|
- "windows-sys",
|
1673
|
- ]
|
1936
|
+ checksum = "f3ac25f8f80a3c5cda4ea68472057b23fa309956ae9784c0f1347439e624840e"
|
1674
1937
|
|
1675
1938
|
[[package]]
|
1676
1939
|
name = "wasmtime-types"
|
1677
|
- version = "9.0.3"
|
1940
|
+ version = "23.0.1"
|
1678
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1679
|
- checksum = "9c574221440e05bbb04efa09786d049401be2eb10081ecf43eb72fbd637bd12f"
|
1942
|
+ checksum = "44a0fba5f60b030c635abafdcaf2e9ad883163676bd02a0f0ebaed9393453f28"
|
1680
1943
|
dependencies = [
|
1944
|
+ "anyhow",
|
1681
1945
|
"cranelift-entity",
|
1682
1946
|
"serde",
|
1683
|
- "thiserror",
|
1947
|
+ "serde_derive",
|
1948
|
+ "smallvec",
|
1684
1949
|
"wasmparser",
|
1685
1950
|
]
|
1686
1951
|
|
1687
1952
|
[[package]]
|
1688
|
- name = "wasmtime-wasi"
|
1689
|
- version = "9.0.1"
|
1953
|
+ name = "wasmtime-versioned-export-macros"
|
1954
|
+ version = "23.0.1"
|
1690
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1691
|
- checksum = "cda4af8d1de5e20fa7d59d732f0722791243c08e2886b38656d5d416e9a135c2"
|
1956
|
+ checksum = "85b40c6d9c8f56ea0cbeacb80f40075a91687163b693b7cda39b48efe3c974d2"
|
1957
|
+ dependencies = [
|
1958
|
+ "proc-macro2",
|
1959
|
+ "quote",
|
1960
|
+ "syn",
|
1961
|
+ ]
|
1962
|
+
|
1963
|
+ [[package]]
|
1964
|
+ name = "wasmtime-wasi"
|
1965
|
+ version = "23.0.1"
|
1966
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
+ checksum = "5a58bb8744f2e76c93e3bfb559646be80c1ebe1191b6e426f2d1b4571ad2a4c7"
|
1692
1968
|
dependencies = [
|
1693
1969
|
"anyhow",
|
1694
|
- "libc",
|
1695
|
- "wasi-cap-std-sync",
|
1696
|
- "wasi-common",
|
1970
|
+ "async-trait",
|
1971
|
+ "bitflags",
|
1972
|
+ "bytes",
|
1973
|
+ "cap-fs-ext",
|
1974
|
+ "cap-net-ext",
|
1975
|
+ "cap-rand",
|
1976
|
+ "cap-std",
|
1977
|
+ "cap-time-ext",
|
1978
|
+ "fs-set-times",
|
1979
|
+ "futures",
|
1980
|
+ "io-extras",
|
1981
|
+ "io-lifetimes",
|
1982
|
+ "once_cell",
|
1983
|
+ "rustix",
|
1984
|
+ "system-interface",
|
1985
|
+ "thiserror",
|
1986
|
+ "tokio",
|
1987
|
+ "tracing",
|
1988
|
+ "url",
|
1697
1989
|
"wasmtime",
|
1698
1990
|
"wiggle",
|
1991
|
+ "windows-sys 0.52.0",
|
1992
|
+ ]
|
1993
|
+
|
1994
|
+ [[package]]
|
1995
|
+ name = "wasmtime-winch"
|
1996
|
+ version = "23.0.1"
|
1997
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
1998
|
+ checksum = "0027b71a418208a21c46988393ceda01dc64842d1b3a601ca0517da270c317b5"
|
1999
|
+ dependencies = [
|
2000
|
+ "anyhow",
|
2001
|
+ "cranelift-codegen",
|
2002
|
+ "gimli 0.28.1",
|
2003
|
+ "object",
|
2004
|
+ "target-lexicon",
|
2005
|
+ "wasmparser",
|
2006
|
+ "wasmtime-cranelift",
|
2007
|
+ "wasmtime-environ",
|
2008
|
+ "winch-codegen",
|
1699
2009
|
]
|
1700
2010
|
|
1701
2011
|
[[package]]
|
1702
2012
|
name = "wasmtime-wit-bindgen"
|
1703
|
- version = "9.0.3"
|
2013
|
+ version = "23.0.1"
|
1704
2014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1705
|
- checksum = "5afee5e7c290e9b32280160226dadbb5e1a4d6ba7c9b79f440b70cc790aabc1e"
|
2015
|
+ checksum = "8cec1424f842d187b8244284e565f71b77bef8993452e8524f71216172978ac8"
|
1706
2016
|
dependencies = [
|
1707
2017
|
"anyhow",
|
1708
|
- "heck",
|
2018
|
+ "heck 0.4.1",
|
2019
|
+ "indexmap",
|
1709
2020
|
"wit-parser",
|
1710
2021
|
]
|
1711
2022
|
|
|
@@ -1720,34 +2031,35 @@ dependencies = [
|
1720
2031
|
|
1721
2032
|
[[package]]
|
1722
2033
|
name = "wast"
|
1723
|
- version = "60.0.0"
|
2034
|
+ version = "214.0.0"
|
1724
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1725
|
- checksum = "bd06cc744b536e30387e72a48fdd492105b9c938bb4f415c39c616a7a0a697ad"
|
2036
|
+ checksum = "694bcdb24c49c8709bd8713768b71301a11e823923eee355d530f1d8d0a7f8e9"
|
1726
2037
|
dependencies = [
|
2038
|
+ "bumpalo",
|
1727
2039
|
"leb128",
|
1728
2040
|
"memchr",
|
1729
2041
|
"unicode-width",
|
1730
|
- "wasm-encoder",
|
2042
|
+ "wasm-encoder 0.214.0",
|
1731
2043
|
]
|
1732
2044
|
|
1733
2045
|
[[package]]
|
1734
2046
|
name = "wat"
|
1735
|
- version = "1.0.66"
|
2047
|
+ version = "1.214.0"
|
1736
2048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1737
|
- checksum = "5abe520f0ab205366e9ac7d3e6b2fc71de44e32a2b58f2ec871b6b575bdcea3b"
|
2049
|
+ checksum = "347249eb56773fa728df2656cfe3a8c19437ded61a922a0b5e0839d9790e278e"
|
1738
2050
|
dependencies = [
|
1739
|
- "wast 60.0.0",
|
2051
|
+ "wast 214.0.0",
|
1740
2052
|
]
|
1741
2053
|
|
1742
2054
|
[[package]]
|
1743
2055
|
name = "wiggle"
|
1744
|
- version = "9.0.1"
|
2056
|
+ version = "23.0.1"
|
1745
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1746
|
- checksum = "21b7f1da4335006b30072d0e859e905a905b3c6a6a58c170159ce921283563ce"
|
2058
|
+ checksum = "4e5319ed83c2ac543c5f69e77b3548020ac1c1cc1f590ad627c77ed4d827a811"
|
1747
2059
|
dependencies = [
|
1748
2060
|
"anyhow",
|
1749
2061
|
"async-trait",
|
1750
|
- "bitflags 1.3.2",
|
2062
|
+ "bitflags",
|
1751
2063
|
"thiserror",
|
1752
2064
|
"tracing",
|
1753
2065
|
"wasmtime",
|
|
@@ -1757,28 +2069,28 @@ dependencies = [
|
1757
2069
|
|
1758
2070
|
[[package]]
|
1759
2071
|
name = "wiggle-generate"
|
1760
|
- version = "9.0.1"
|
2072
|
+ version = "23.0.1"
|
1761
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1762
|
- checksum = "5cff10f65663348b5503900777da6cc5a186902a4b9974c898abaec249f5257c"
|
2074
|
+ checksum = "fe9a96d7bf758f59a0cb086d94ae24269cb7f1ffd3c24058871769884e8e9026"
|
1763
2075
|
dependencies = [
|
1764
2076
|
"anyhow",
|
1765
|
- "heck",
|
2077
|
+ "heck 0.4.1",
|
1766
2078
|
"proc-macro2",
|
1767
2079
|
"quote",
|
1768
2080
|
"shellexpand",
|
1769
|
- "syn 1.0.109",
|
2081
|
+ "syn",
|
1770
2082
|
"witx",
|
1771
2083
|
]
|
1772
2084
|
|
1773
2085
|
[[package]]
|
1774
2086
|
name = "wiggle-macro"
|
1775
|
- version = "9.0.1"
|
2087
|
+ version = "23.0.1"
|
1776
2088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1777
|
- checksum = "d7e71b4c5994191e29d29571df0ab7b4768e0deb01dba3bbad5981fe096a4b77"
|
2089
|
+ checksum = "caa70aa74de29f1438f083e39005d854812c72c48d876060e9e6df9686fb677b"
|
1778
2090
|
dependencies = [
|
1779
2091
|
"proc-macro2",
|
1780
2092
|
"quote",
|
1781
|
- "syn 1.0.109",
|
2093
|
+ "syn",
|
1782
2094
|
"wiggle-generate",
|
1783
2095
|
]
|
1784
2096
|
|
|
@@ -1800,11 +2112,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1800
2112
|
|
1801
2113
|
[[package]]
|
1802
2114
|
name = "winapi-util"
|
1803
|
- version = "0.1.5"
|
2115
|
+ version = "0.1.8"
|
1804
2116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
|
- checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2117
|
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
1806
2118
|
dependencies = [
|
1807
|
- "winapi",
|
2119
|
+ "windows-sys 0.52.0",
|
1808
2120
|
]
|
1809
2121
|
|
1810
2122
|
[[package]]
|
|
@@ -1813,96 +2125,206 @@ version = "0.4.0"
|
1813
2125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1814
2126
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1815
2127
|
|
2128
|
+ [[package]]
|
2129
|
+ name = "winch-codegen"
|
2130
|
+ version = "0.21.1"
|
2131
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
+ checksum = "56a6aa28dbe4633a9934f27f18e262fd4886c02be3c6de0ee4ad3a1cb32a7758"
|
2133
|
+ dependencies = [
|
2134
|
+ "anyhow",
|
2135
|
+ "cranelift-codegen",
|
2136
|
+ "gimli 0.28.1",
|
2137
|
+ "regalloc2",
|
2138
|
+ "smallvec",
|
2139
|
+ "target-lexicon",
|
2140
|
+ "wasmparser",
|
2141
|
+ "wasmtime-cranelift",
|
2142
|
+ "wasmtime-environ",
|
2143
|
+ ]
|
2144
|
+
|
2145
|
+ [[package]]
|
2146
|
+ name = "windows-core"
|
2147
|
+ version = "0.52.0"
|
2148
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2149
|
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2150
|
+ dependencies = [
|
2151
|
+ "windows-targets 0.52.6",
|
2152
|
+ ]
|
2153
|
+
|
1816
2154
|
[[package]]
|
1817
2155
|
name = "windows-sys"
|
1818
2156
|
version = "0.48.0"
|
1819
2157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1820
2158
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
1821
2159
|
dependencies = [
|
1822
|
- "windows-targets",
|
2160
|
+ "windows-targets 0.48.5",
|
2161
|
+ ]
|
2162
|
+
|
2163
|
+ [[package]]
|
2164
|
+ name = "windows-sys"
|
2165
|
+ version = "0.52.0"
|
2166
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2167
|
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2168
|
+ dependencies = [
|
2169
|
+ "windows-targets 0.52.6",
|
1823
2170
|
]
|
1824
2171
|
|
1825
2172
|
[[package]]
|
1826
2173
|
name = "windows-targets"
|
1827
|
- version = "0.48.0"
|
2174
|
+ version = "0.48.5"
|
1828
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1829
|
- checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2176
|
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
1830
2177
|
dependencies = [
|
1831
|
- "windows_aarch64_gnullvm",
|
1832
|
- "windows_aarch64_msvc",
|
1833
|
- "windows_i686_gnu",
|
1834
|
- "windows_i686_msvc",
|
1835
|
- "windows_x86_64_gnu",
|
1836
|
- "windows_x86_64_gnullvm",
|
1837
|
- "windows_x86_64_msvc",
|
2178
|
+ "windows_aarch64_gnullvm 0.48.5",
|
2179
|
+ "windows_aarch64_msvc 0.48.5",
|
2180
|
+ "windows_i686_gnu 0.48.5",
|
2181
|
+ "windows_i686_msvc 0.48.5",
|
2182
|
+ "windows_x86_64_gnu 0.48.5",
|
2183
|
+ "windows_x86_64_gnullvm 0.48.5",
|
2184
|
+ "windows_x86_64_msvc 0.48.5",
|
2185
|
+ ]
|
2186
|
+
|
2187
|
+ [[package]]
|
2188
|
+ name = "windows-targets"
|
2189
|
+ version = "0.52.6"
|
2190
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2191
|
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2192
|
+ dependencies = [
|
2193
|
+ "windows_aarch64_gnullvm 0.52.6",
|
2194
|
+ "windows_aarch64_msvc 0.52.6",
|
2195
|
+ "windows_i686_gnu 0.52.6",
|
2196
|
+ "windows_i686_gnullvm",
|
2197
|
+ "windows_i686_msvc 0.52.6",
|
2198
|
+ "windows_x86_64_gnu 0.52.6",
|
2199
|
+ "windows_x86_64_gnullvm 0.52.6",
|
2200
|
+ "windows_x86_64_msvc 0.52.6",
|
1838
2201
|
]
|
1839
2202
|
|
1840
2203
|
[[package]]
|
1841
2204
|
name = "windows_aarch64_gnullvm"
|
1842
|
- version = "0.48.0"
|
2205
|
+ version = "0.48.5"
|
1843
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
- checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2207
|
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2208
|
+
|
2209
|
+ [[package]]
|
2210
|
+ name = "windows_aarch64_gnullvm"
|
2211
|
+ version = "0.52.6"
|
2212
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2213
|
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1845
2214
|
|
1846
2215
|
[[package]]
|
1847
2216
|
name = "windows_aarch64_msvc"
|
1848
|
- version = "0.48.0"
|
2217
|
+ version = "0.48.5"
|
1849
2218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1850
|
- checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2219
|
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2220
|
+
|
2221
|
+ [[package]]
|
2222
|
+ name = "windows_aarch64_msvc"
|
2223
|
+ version = "0.52.6"
|
2224
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2225
|
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1851
2226
|
|
1852
2227
|
[[package]]
|
1853
2228
|
name = "windows_i686_gnu"
|
1854
|
- version = "0.48.0"
|
2229
|
+ version = "0.48.5"
|
1855
2230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
- checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2231
|
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2232
|
+
|
2233
|
+ [[package]]
|
2234
|
+ name = "windows_i686_gnu"
|
2235
|
+ version = "0.52.6"
|
2236
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2237
|
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2238
|
+
|
2239
|
+ [[package]]
|
2240
|
+ name = "windows_i686_gnullvm"
|
2241
|
+ version = "0.52.6"
|
2242
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2243
|
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1857
2244
|
|
1858
2245
|
[[package]]
|
1859
2246
|
name = "windows_i686_msvc"
|
1860
|
- version = "0.48.0"
|
2247
|
+ version = "0.48.5"
|
1861
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1862
|
- checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2249
|
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2250
|
+
|
2251
|
+ [[package]]
|
2252
|
+ name = "windows_i686_msvc"
|
2253
|
+ version = "0.52.6"
|
2254
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2255
|
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1863
2256
|
|
1864
2257
|
[[package]]
|
1865
2258
|
name = "windows_x86_64_gnu"
|
1866
|
- version = "0.48.0"
|
2259
|
+ version = "0.48.5"
|
1867
2260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1868
|
- checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2261
|
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2262
|
+
|
2263
|
+ [[package]]
|
2264
|
+ name = "windows_x86_64_gnu"
|
2265
|
+ version = "0.52.6"
|
2266
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2267
|
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1869
2268
|
|
1870
2269
|
[[package]]
|
1871
2270
|
name = "windows_x86_64_gnullvm"
|
1872
|
- version = "0.48.0"
|
2271
|
+ version = "0.48.5"
|
1873
2272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
- checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2273
|
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2274
|
+
|
2275
|
+ [[package]]
|
2276
|
+ name = "windows_x86_64_gnullvm"
|
2277
|
+ version = "0.52.6"
|
2278
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2279
|
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1875
2280
|
|
1876
2281
|
[[package]]
|
1877
2282
|
name = "windows_x86_64_msvc"
|
1878
|
- version = "0.48.0"
|
2283
|
+ version = "0.48.5"
|
1879
2284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
- checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
2285
|
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2286
|
+
|
2287
|
+ [[package]]
|
2288
|
+ name = "windows_x86_64_msvc"
|
2289
|
+ version = "0.52.6"
|
2290
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2291
|
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2292
|
+
|
2293
|
+ [[package]]
|
2294
|
+ name = "winnow"
|
2295
|
+ version = "0.6.15"
|
2296
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
|
+ checksum = "557404e450152cd6795bb558bca69e43c585055f4606e3bcae5894fc6dac9ba0"
|
2298
|
+ dependencies = [
|
2299
|
+ "memchr",
|
2300
|
+ ]
|
1881
2301
|
|
1882
2302
|
[[package]]
|
1883
2303
|
name = "winx"
|
1884
|
- version = "0.35.1"
|
2304
|
+ version = "0.36.3"
|
1885
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
- checksum = "1c52a121f0fbf9320d5f2a9a5d82f6cb7557eda5e8b47fc3e7f359ec866ae960"
|
2306
|
+ checksum = "f9643b83820c0cd246ecabe5fa454dd04ba4fa67996369466d0747472d337346"
|
1887
2307
|
dependencies = [
|
1888
|
- "bitflags 1.3.2",
|
1889
|
- "io-lifetimes",
|
1890
|
- "windows-sys",
|
2308
|
+ "bitflags",
|
2309
|
+ "windows-sys 0.52.0",
|
1891
2310
|
]
|
1892
2311
|
|
1893
2312
|
[[package]]
|
1894
2313
|
name = "wit-parser"
|
1895
|
- version = "0.7.1"
|
2314
|
+ version = "0.212.0"
|
1896
2315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1897
|
- checksum = "5ca2581061573ef6d1754983d7a9b3ed5871ef859d52708ea9a0f5af32919172"
|
2316
|
+ checksum = "ceeb0424aa8679f3fcf2d6e3cfa381f3d6fa6179976a2c05a6249dd2bb426716"
|
1898
2317
|
dependencies = [
|
1899
2318
|
"anyhow",
|
1900
2319
|
"id-arena",
|
1901
2320
|
"indexmap",
|
1902
2321
|
"log",
|
1903
|
- "pulldown-cmark",
|
2322
|
+ "semver",
|
2323
|
+ "serde",
|
2324
|
+ "serde_derive",
|
2325
|
+ "serde_json",
|
1904
2326
|
"unicode-xid",
|
1905
|
- "url",
|
2327
|
+ "wasmparser",
|
1906
2328
|
]
|
1907
2329
|
|
1908
2330
|
[[package]]
|
|
@@ -1918,31 +2340,49 @@ dependencies = [
|
1918
2340
|
]
|
1919
2341
|
|
1920
2342
|
[[package]]
|
1921
|
- name = "zstd"
|
1922
|
- version = "0.11.2+zstd.1.5.2"
|
2343
|
+ name = "zerocopy"
|
2344
|
+ version = "0.7.35"
|
1923
2345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1924
|
- checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
2346
|
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2347
|
+ dependencies = [
|
2348
|
+ "zerocopy-derive",
|
2349
|
+ ]
|
2350
|
+
|
2351
|
+ [[package]]
|
2352
|
+ name = "zerocopy-derive"
|
2353
|
+ version = "0.7.35"
|
2354
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2355
|
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2356
|
+ dependencies = [
|
2357
|
+ "proc-macro2",
|
2358
|
+ "quote",
|
2359
|
+ "syn",
|
2360
|
+ ]
|
2361
|
+
|
2362
|
+ [[package]]
|
2363
|
+ name = "zstd"
|
2364
|
+ version = "0.13.2"
|
2365
|
+ source = "registry+https://github.com/rust-lang/crates.io-index"
|
2366
|
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
1925
2367
|
dependencies = [
|
1926
2368
|
"zstd-safe",
|
1927
2369
|
]
|
1928
2370
|
|
1929
2371
|
[[package]]
|
1930
2372
|
name = "zstd-safe"
|
1931
|
- version = "5.0.2+zstd.1.5.2"
|
2373
|
+ version = "7.2.0"
|
1932
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1933
|
- checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
2375
|
+ checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
|
1934
2376
|
dependencies = [
|
1935
|
- "libc",
|
1936
2377
|
"zstd-sys",
|
1937
2378
|
]
|
1938
2379
|
|
1939
2380
|
[[package]]
|
1940
2381
|
name = "zstd-sys"
|
1941
|
- version = "2.0.8+zstd.1.5.5"
|
2382
|
+ version = "2.0.12+zstd.1.5.6"
|
1942
2383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1943
|
- checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
2384
|
+ checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
|
1944
2385
|
dependencies = [
|
1945
2386
|
"cc",
|
1946
|
- "libc",
|
1947
2387
|
"pkg-config",
|
1948
2388
|
]
|
changed
native/wasmex/Cargo.toml
|
@@ -1,6 +1,6 @@
|
1
1
|
[package]
|
2
2
|
name = "wasmex"
|
3
|
- version = "0.8.3"
|
3
|
+ version = "0.9.0"
|
4
4
|
authors = ["Philipp Tessenow <[email protected]>"]
|
5
5
|
description = "Elixir extension to run WebAssembly binaries through wasmtime"
|
6
6
|
readme = "README.md"
|
|
@@ -15,11 +15,11 @@ path = "src/lib.rs"
|
15
15
|
crate-type = ["dylib"]
|
16
16
|
|
17
17
|
[dependencies]
|
18
|
- rustler = "0.28.0"
|
19
|
- once_cell = "1.17.2"
|
18
|
+ rustler = { version = "0.34", features = ["big_integer"] }
|
19
|
+ once_cell = "1.19.0"
|
20
20
|
rand = "0.8.5"
|
21
|
- wasmtime = "9.0.3"
|
22
|
- wasmtime-wasi = "9.0.1"
|
23
|
- wasi-common = "9.0.1"
|
24
|
- wiggle = "9.0.1"
|
25
|
- wat = "1.0.66"
|
21
|
+ wasmtime = "23.0.1"
|
22
|
+ wasmtime-wasi = "23.0.1"
|
23
|
+ wasi-common = "23.0.1"
|
24
|
+ wiggle = "23.0.1"
|
25
|
+ wat = "1.214.0"
|
changed
native/wasmex/src/atoms.rs
|
@@ -17,6 +17,7 @@ rustler::atoms! {
|
17
17
|
f32,
|
18
18
|
f64,
|
19
19
|
v128,
|
20
|
+ reference,
|
20
21
|
extern_ref,
|
21
22
|
func_ref,
|
22
23
|
caller,
|
changed
native/wasmex/src/engine.rs
|
@@ -3,7 +3,7 @@
|
3
3
|
// see: https://github.com/rust-lang/rust-clippy/issues/9778
|
4
4
|
#![allow(clippy::needless_borrow)]
|
5
5
|
|
6
|
- use rustler::{resource::ResourceArc, types::Binary, Error, OwnedBinary};
|
6
|
+ use rustler::{Binary, Error, NifStruct, OwnedBinary, Resource, ResourceArc};
|
7
7
|
use std::ops::Deref;
|
8
8
|
use std::sync::Mutex;
|
9
9
|
use wasmtime::{Config, Engine, WasmBacktraceDetails};
|
|
@@ -18,6 +18,9 @@ pub struct ExEngineConfig {
|
18
18
|
cranelift_opt_level: rustler::Atom,
|
19
19
|
}
|
20
20
|
|
21
|
+ #[rustler::resource_impl()]
|
22
|
+ impl Resource for EngineResource {}
|
23
|
+
|
21
24
|
pub struct EngineResource {
|
22
25
|
pub inner: Mutex<Engine>,
|
23
26
|
}
|
changed
native/wasmex/src/environment.rs
|
@@ -1,44 +1,76 @@
|
1
|
- use std::sync::{Condvar, Mutex};
|
2
|
-
|
3
|
- use rustler::{
|
4
|
- resource::ResourceArc, types::tuple, Atom, Encoder, Error, ListIterator, MapIterator, OwnedEnv,
|
5
|
- Term,
|
6
|
- };
|
7
|
- use wasmtime::{Caller, FuncType, Linker, Val, ValType};
|
8
|
- use wiggle::anyhow::{self, anyhow};
|
9
|
-
|
10
1
|
use crate::{
|
11
|
- atoms::{self},
|
2
|
+ atoms,
|
12
3
|
caller::{remove_caller, set_caller},
|
13
|
- instance::{map_wasm_values_to_vals, WasmValue},
|
4
|
+ instance::{map_wasm_values_to_vals, LinkedModule, WasmValue},
|
14
5
|
memory::MemoryResource,
|
15
6
|
store::{StoreData, StoreOrCaller, StoreOrCallerResource},
|
16
7
|
};
|
8
|
+ use rustler::{
|
9
|
+ types::tuple, Atom, Encoder, Error, ListIterator, MapIterator, OwnedEnv, ResourceArc, Term,
|
10
|
+ };
|
11
|
+ use std::sync::{Condvar, Mutex};
|
12
|
+ use wasmtime::{Caller, Engine, FuncType, Linker, Val, ValType};
|
13
|
+ use wiggle::anyhow::{self, anyhow};
|
17
14
|
|
18
15
|
pub struct CallbackTokenResource {
|
19
16
|
pub token: CallbackToken,
|
20
17
|
}
|
21
18
|
|
19
|
+ #[rustler::resource_impl()]
|
20
|
+ impl rustler::Resource for CallbackTokenResource {}
|
21
|
+
|
22
22
|
pub struct CallbackToken {
|
23
23
|
pub continue_signal: Condvar,
|
24
24
|
pub return_types: Vec<ValType>,
|
25
25
|
pub return_values: Mutex<Option<(bool, Vec<WasmValue>)>>,
|
26
26
|
}
|
27
27
|
|
28
|
- pub fn link_imports(linker: &mut Linker<StoreData>, imports: MapIterator) -> Result<(), Error> {
|
28
|
+ pub fn link_modules(
|
29
|
+ linker: &mut Linker<StoreData>,
|
30
|
+ store: &mut StoreOrCaller,
|
31
|
+ linked_modules: Vec<LinkedModule>,
|
32
|
+ ) -> Result<(), Error> {
|
33
|
+ for linked_module in linked_modules {
|
34
|
+ let module_name = linked_module.name;
|
35
|
+ let module = linked_module.module_resource.inner.lock().map_err(|e| {
|
36
|
+ rustler::Error::Term(Box::new(format!(
|
37
|
+ "Could not unlock linked module resource as the mutex was poisoned: {e}"
|
38
|
+ )))
|
39
|
+ })?;
|
40
|
+
|
41
|
+ let instance = linker.instantiate(&mut *store, &module).map_err(|e| {
|
42
|
+ rustler::Error::Term(Box::new(format!(
|
43
|
+ "Could not instantiate linked module: {e}"
|
44
|
+ )))
|
45
|
+ })?;
|
46
|
+
|
47
|
+ linker
|
48
|
+ .instance(&mut *store, &module_name, instance)
|
49
|
+ .map_err(|err| Error::Term(Box::new(err.to_string())))?;
|
50
|
+ }
|
51
|
+
|
52
|
+ Ok(())
|
53
|
+ }
|
54
|
+
|
55
|
+ pub fn link_imports(
|
56
|
+ engine: &Engine,
|
57
|
+ linker: &mut Linker<StoreData>,
|
58
|
+ imports: MapIterator,
|
59
|
+ ) -> Result<(), Error> {
|
29
60
|
for (namespace_name, namespace_definition) in imports {
|
30
61
|
let namespace_name = namespace_name.decode::<String>()?;
|
31
62
|
let definition: MapIterator = namespace_definition.decode()?;
|
32
63
|
|
33
64
|
for (import_name, import) in definition {
|
34
65
|
let import_name = import_name.decode::<String>()?;
|
35
|
- link_import(linker, &namespace_name, &import_name, import)?;
|
66
|
+ link_import(engine, linker, &namespace_name, &import_name, import)?;
|
36
67
|
}
|
37
68
|
}
|
38
69
|
Ok(())
|
39
70
|
}
|
40
71
|
|
41
72
|
fn link_import(
|
73
|
+ engine: &Engine,
|
42
74
|
linker: &mut Linker<StoreData>,
|
43
75
|
namespace_name: &str,
|
44
76
|
import_name: &str,
|
|
@@ -47,13 +79,14 @@ fn link_import(
|
47
79
|
let import_tuple = tuple::get_tuple(definition)?;
|
48
80
|
|
49
81
|
let import_type = import_tuple
|
50
|
- .get(0)
|
82
|
+ .first()
|
51
83
|
.ok_or(Error::Atom("missing_import_type"))?;
|
52
84
|
let import_type =
|
53
85
|
Atom::from_term(*import_type).map_err(|_| Error::Atom("import type must be an atom"))?;
|
54
86
|
|
55
87
|
if atoms::__fn__().eq(&import_type) {
|
56
88
|
return link_imported_function(
|
89
|
+ engine,
|
57
90
|
linker,
|
58
91
|
namespace_name.to_string(),
|
59
92
|
import_name.to_string(),
|
|
@@ -65,8 +98,10 @@ fn link_import(
|
65
98
|
}
|
66
99
|
|
67
100
|
// Creates a wrapper function used in a Wasm import object.
|
68
|
- // The `definition` term must contain a function signature matching the signature if the Wasm import.
|
101
|
+ //
|
102
|
+ // The `definition` term must contain a function signature matching the signature of the Wasm import.
|
69
103
|
// Once the imported function is called during Wasm execution, the following happens:
|
104
|
+ //
|
70
105
|
// 1. the rust wrapper we define here is called
|
71
106
|
// 2. it creates a callback token containing a Mutex for storing the call result and a Condvar
|
72
107
|
// 3. the rust wrapper sends an :invoke_callback message to elixir containing the token and call params
|
|
@@ -75,6 +110,7 @@ fn link_import(
|
75
110
|
// 6. `receive_callback_result` saves the return values in the callback tokens mutex and signals the condvar,
|
76
111
|
// so that the original wrapper function can continue code execution
|
77
112
|
fn link_imported_function(
|
113
|
+ engine: &Engine,
|
78
114
|
linker: &mut Linker<StoreData>,
|
79
115
|
namespace_name: String,
|
80
116
|
import_name: String,
|
|
@@ -101,7 +137,7 @@ fn link_imported_function(
|
101
137
|
.map(term_to_arg_type)
|
102
138
|
.collect::<Result<Vec<ValType>, _>>()?;
|
103
139
|
|
104
|
- let signature = FuncType::new(params_signature, results_signature.clone());
|
140
|
+ let signature = FuncType::new(engine, params_signature, results_signature.clone());
|
105
141
|
linker
|
106
142
|
.func_new(
|
107
143
|
&namespace_name.clone(),
|
|
@@ -126,7 +162,7 @@ fn link_imported_function(
|
126
162
|
let caller_token = set_caller(caller);
|
127
163
|
|
128
164
|
let mut msg_env = OwnedEnv::new();
|
129
|
- msg_env.send_and_clear(&pid.clone(), |env| {
|
165
|
+ let result = msg_env.send_and_clear(&pid.clone(), |env| {
|
130
166
|
let mut callback_params: Vec<Term> = Vec::with_capacity(params.len());
|
131
167
|
for value in params {
|
132
168
|
callback_params.push(match value {
|
|
@@ -134,16 +170,16 @@ fn link_imported_function(
|
134
170
|
Val::I64(i) => i.encode(env),
|
135
171
|
Val::F32(i) => f32::from_bits(*i).encode(env),
|
136
172
|
Val::F64(i) => f64::from_bits(*i).encode(env),
|
137
|
- // encoding V128 is not yet supported by rustler
|
138
|
- Val::V128(_) => {
|
139
|
- (atoms::error(), "unable_to_convert_v128_type").encode(env)
|
140
|
- }
|
173
|
+ Val::V128(i) => i.as_u128().encode(env),
|
141
174
|
Val::ExternRef(_) => {
|
142
175
|
(atoms::error(), "unable_to_convert_extern_ref_type").encode(env)
|
143
176
|
}
|
144
177
|
Val::FuncRef(_) => {
|
145
178
|
(atoms::error(), "unable_to_convert_func_ref_type").encode(env)
|
146
179
|
}
|
180
|
+ Val::AnyRef(_) => {
|
181
|
+ (atoms::error(), "unable_to_convert_any_ref_type").encode(env)
|
182
|
+ }
|
147
183
|
})
|
148
184
|
}
|
149
185
|
// Callback context will contain memory (plus maybe globals, tables etc later).
|
|
@@ -183,6 +219,8 @@ fn link_imported_function(
|
183
219
|
.encode(env)
|
184
220
|
});
|
185
221
|
|
222
|
+ result.expect("expect no send error");
|
223
|
+
|
186
224
|
// Wait for the thread to start up - `receive_callback_result` is responsible for that.
|
187
225
|
let mut result = callback_token.token.return_values.lock().unwrap();
|
188
226
|
while result.is_none() {
|
changed
native/wasmex/src/instance.rs
|
@@ -1,30 +1,35 @@
|
1
|
- use rustler::{
|
2
|
- dynamic::TermType,
|
3
|
- env::{OwnedEnv, SavedTerm},
|
4
|
- resource::ResourceArc,
|
5
|
- types::tuple::make_tuple,
|
6
|
- types::ListIterator,
|
7
|
- Encoder, Env as RustlerEnv, Error, MapIterator, NifResult, Term,
|
8
|
- };
|
9
|
- use std::ops::Deref;
|
10
|
- use std::sync::Mutex;
|
11
|
- use std::thread;
|
12
|
-
|
13
|
- use wasmtime::{Instance, Linker, Module, Val, ValType};
|
14
|
-
|
15
1
|
use crate::{
|
16
2
|
atoms,
|
17
|
- environment::{link_imports, CallbackTokenResource},
|
3
|
+ environment::{link_imports, link_modules, CallbackTokenResource},
|
18
4
|
functions,
|
19
5
|
module::ModuleResource,
|
20
6
|
printable_term_type::PrintableTermType,
|
21
7
|
store::{StoreData, StoreOrCaller, StoreOrCallerResource},
|
22
8
|
};
|
9
|
+ use rustler::{
|
10
|
+ env::SavedTerm,
|
11
|
+ types::{tuple::make_tuple, ListIterator},
|
12
|
+ Encoder, Env as RustlerEnv, Error, MapIterator, NifMap, NifResult, OwnedEnv, ResourceArc, Term,
|
13
|
+ TermType,
|
14
|
+ };
|
15
|
+ use std::ops::Deref;
|
16
|
+ use std::sync::Mutex;
|
17
|
+ use std::thread;
|
18
|
+ use wasmtime::{Instance, Linker, Module, Val, ValType};
|
19
|
+
|
20
|
+ #[derive(NifMap)]
|
21
|
+ pub struct LinkedModule {
|
22
|
+ pub name: String,
|
23
|
+ pub module_resource: ResourceArc<ModuleResource>,
|
24
|
+ }
|
23
25
|
|
24
26
|
pub struct InstanceResource {
|
25
27
|
pub inner: Mutex<Instance>,
|
26
28
|
}
|
27
29
|
|
30
|
+ #[rustler::resource_impl()]
|
31
|
+ impl rustler::Resource for InstanceResource {}
|
32
|
+
|
28
33
|
// creates a new instance from the given Wasm bytes
|
29
34
|
// expects the following elixir params
|
30
35
|
//
|
|
@@ -37,6 +42,7 @@ pub fn new(
|
37
42
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
38
43
|
module_resource: ResourceArc<ModuleResource>,
|
39
44
|
imports: MapIterator,
|
45
|
+ linked_modules: Vec<LinkedModule>,
|
40
46
|
) -> Result<ResourceArc<InstanceResource>, rustler::Error> {
|
41
47
|
let module = module_resource.inner.lock().map_err(|e| {
|
42
48
|
rustler::Error::Term(Box::new(format!(
|
|
@@ -50,7 +56,7 @@ pub fn new(
|
50
56
|
)))
|
51
57
|
})?);
|
52
58
|
|
53
|
- let instance = link_and_create_instance(store_or_caller, &module, imports)?;
|
59
|
+ let instance = link_and_create_instance(store_or_caller, &module, imports, linked_modules)?;
|
54
60
|
let resource = ResourceArc::new(InstanceResource {
|
55
61
|
inner: Mutex::new(instance),
|
56
62
|
});
|
|
@@ -61,19 +67,120 @@ fn link_and_create_instance(
|
61
67
|
store_or_caller: &mut StoreOrCaller,
|
62
68
|
module: &Module,
|
63
69
|
imports: MapIterator,
|
70
|
+ linked_modules: Vec<LinkedModule>,
|
64
71
|
) -> Result<Instance, Error> {
|
65
72
|
let mut linker = Linker::new(store_or_caller.engine());
|
66
73
|
if let Some(_wasi_ctx) = &store_or_caller.data().wasi {
|
67
74
|
linker.allow_shadowing(true);
|
68
|
- wasmtime_wasi::add_to_linker(&mut linker, |s: &mut StoreData| s.wasi.as_mut().unwrap())
|
75
|
+ wasi_common::sync::add_to_linker(&mut linker, |s: &mut StoreData| s.wasi.as_mut().unwrap())
|
69
76
|
.map_err(|err| Error::Term(Box::new(err.to_string())))?;
|
70
77
|
}
|
71
|
- link_imports(&mut linker, imports)?;
|
78
|
+
|
79
|
+ link_imports(store_or_caller.engine(), &mut linker, imports)?;
|
80
|
+ link_modules(&mut linker, store_or_caller, linked_modules)?;
|
81
|
+
|
72
82
|
linker
|
73
83
|
.instantiate(store_or_caller, module)
|
74
84
|
.map_err(|err| Error::Term(Box::new(err.to_string())))
|
75
85
|
}
|
76
86
|
|
87
|
+ #[rustler::nif(name = "instance_get_global_value", schedule = "DirtyCpu")]
|
88
|
+ pub fn get_global_value(
|
89
|
+ env: rustler::Env,
|
90
|
+ store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
91
|
+ instance_resource: ResourceArc<InstanceResource>,
|
92
|
+ global_name: String,
|
93
|
+ ) -> NifResult<Term> {
|
94
|
+ let instance: Instance = *(instance_resource.inner.lock().map_err(|e| {
|
95
|
+ rustler::Error::Term(Box::new(format!(
|
96
|
+ "Could not unlock instance resource as the mutex was poisoned: {e}"
|
97
|
+ )))
|
98
|
+ })?);
|
99
|
+ let mut store_or_caller: &mut StoreOrCaller =
|
100
|
+ &mut *(store_or_caller_resource.inner.lock().map_err(|e| {
|
101
|
+ rustler::Error::Term(Box::new(format!(
|
102
|
+ "Could not unlock instance/store resource as the mutex was poisoned: {e}"
|
103
|
+ )))
|
104
|
+ })?);
|
105
|
+
|
106
|
+ let global = instance
|
107
|
+ .get_global(&mut store_or_caller, &global_name)
|
108
|
+ .ok_or_else(|| {
|
109
|
+ rustler::Error::Term(Box::new(format!(
|
110
|
+ "exported global `{global_name}` not found"
|
111
|
+ )))
|
112
|
+ })?;
|
113
|
+
|
114
|
+ let value = global.get(&mut store_or_caller);
|
115
|
+
|
116
|
+ match value {
|
117
|
+ Val::I32(i) => Ok(i.encode(env)),
|
118
|
+ Val::I64(i) => Ok(i.encode(env)),
|
119
|
+ Val::F32(i) => Ok(f32::from_bits(i).encode(env)),
|
120
|
+ Val::F64(i) => Ok(f64::from_bits(i).encode(env)),
|
121
|
+ Val::V128(i) => Ok(rustler::BigInt::from(i.as_u128()).encode(env)),
|
122
|
+ Val::FuncRef(_) => Err(rustler::Error::Term(Box::new(
|
123
|
+ "unable_to_return_func_ref_type",
|
124
|
+ ))),
|
125
|
+ Val::ExternRef(_) => Err(rustler::Error::Term(Box::new(
|
126
|
+ "unable_to_return_extern_ref_type",
|
127
|
+ ))),
|
128
|
+ Val::AnyRef(_) => Err(rustler::Error::Term(Box::new(
|
129
|
+ "unable_to_return_any_ref_type",
|
130
|
+ ))),
|
131
|
+ }
|
132
|
+ }
|
133
|
+
|
134
|
+ #[rustler::nif(name = "instance_set_global_value", schedule = "DirtyCpu")]
|
135
|
+ pub fn set_global_value(
|
136
|
+ store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
137
|
+ instance_resource: ResourceArc<InstanceResource>,
|
138
|
+ global_name: String,
|
139
|
+ new_value: Term,
|
140
|
+ ) -> NifResult<()> {
|
141
|
+ let instance: Instance = *(instance_resource.inner.lock().map_err(|e| {
|
142
|
+ rustler::Error::Term(Box::new(format!(
|
143
|
+ "Could not unlock instance resource as the mutex was poisoned: {e}"
|
144
|
+ )))
|
145
|
+ })?);
|
146
|
+ let mut store_or_caller: &mut StoreOrCaller =
|
147
|
+ &mut *(store_or_caller_resource.inner.lock().map_err(|e| {
|
148
|
+ rustler::Error::Term(Box::new(format!(
|
149
|
+ "Could not unlock instance/store resource as the mutex was poisoned: {e}"
|
150
|
+ )))
|
151
|
+ })?);
|
152
|
+
|
153
|
+ let global = instance
|
154
|
+ .get_global(&mut store_or_caller, &global_name)
|
155
|
+ .ok_or_else(|| {
|
156
|
+ rustler::Error::Term(Box::new(format!(
|
157
|
+ "exported global `{global_name}` not found"
|
158
|
+ )))
|
159
|
+ })?;
|
160
|
+
|
161
|
+ let global_type = global.ty(&store_or_caller).content().clone();
|
162
|
+
|
163
|
+ let new_value = decode_term_as_wasm_value(global_type.clone(), new_value).ok_or_else(|| {
|
164
|
+ rustler::Error::Term(Box::new(format!(
|
165
|
+ "Cannot convert to a WebAssembly {:?} value. Given `{:?}`.",
|
166
|
+ global_type,
|
167
|
+ PrintableTermType::PrintTerm(new_value.get_type())
|
168
|
+ )))
|
169
|
+ })?;
|
170
|
+
|
171
|
+ let val: Val = match new_value {
|
172
|
+ WasmValue::I32(value) => value.into(),
|
173
|
+ WasmValue::I64(value) => value.into(),
|
174
|
+ WasmValue::F32(value) => value.into(),
|
175
|
+ WasmValue::F64(value) => value.into(),
|
176
|
+ WasmValue::V128(value) => value.into(),
|
177
|
+ };
|
178
|
+
|
179
|
+ global
|
180
|
+ .set(&mut store_or_caller, val)
|
181
|
+ .map_err(|e| rustler::Error::Term(Box::new(format!("Could not set global: {e}"))))
|
182
|
+ }
|
183
|
+
|
77
184
|
#[rustler::nif(name = "instance_function_export_exists")]
|
78
185
|
pub fn function_export_exists(
|
79
186
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
|
@@ -169,7 +276,7 @@ fn execute_function(
|
169
276
|
Err(reason) => return make_error_tuple(&thread_env, &reason, from),
|
170
277
|
};
|
171
278
|
let results_count = function.ty(&*store_or_caller).results().len();
|
172
|
- let mut results = vec![Val::null(); results_count];
|
279
|
+ let mut results = vec![Val::null_extern_ref(); results_count];
|
173
280
|
let call_result = function.call(
|
174
281
|
&mut *store_or_caller,
|
175
282
|
function_params.as_slice(),
|
|
@@ -189,16 +296,16 @@ fn execute_function(
|
189
296
|
Val::I64(i) => i.encode(thread_env),
|
190
297
|
Val::F32(i) => f32::from_bits(i).encode(thread_env),
|
191
298
|
Val::F64(i) => f64::from_bits(i).encode(thread_env),
|
192
|
- // encoding V128 is not yet supported by rustler
|
193
|
- Val::V128(_) => {
|
194
|
- return make_error_tuple(&thread_env, "unable_to_return_v128_type", from)
|
195
|
- }
|
299
|
+ Val::V128(i) => rustler::BigInt::from(i.as_u128()).encode(thread_env),
|
196
300
|
Val::FuncRef(_) => {
|
197
301
|
return make_error_tuple(&thread_env, "unable_to_return_func_ref_type", from)
|
198
302
|
}
|
199
303
|
Val::ExternRef(_) => {
|
200
304
|
return make_error_tuple(&thread_env, "unable_to_return_extern_ref_type", from)
|
201
305
|
}
|
306
|
+ Val::AnyRef(_) => {
|
307
|
+ return make_error_tuple(&thread_env, "unable_to_return_any_ref_type", from)
|
308
|
+ }
|
202
309
|
})
|
203
310
|
}
|
204
311
|
make_tuple(
|
|
@@ -223,6 +330,62 @@ pub enum WasmValue {
|
223
330
|
I64(i64),
|
224
331
|
F32(f32),
|
225
332
|
F64(f64),
|
333
|
+ V128(u128),
|
334
|
+ }
|
335
|
+
|
336
|
+ fn decode_term_as_wasm_value(expected_type: ValType, term: Term) -> Option<WasmValue> {
|
337
|
+ let value = match (expected_type, term.get_type()) {
|
338
|
+ (ValType::I32, TermType::Integer | TermType::Float) => match term.decode::<i32>() {
|
339
|
+ Ok(value) => WasmValue::I32(value),
|
340
|
+ Err(_) => return None,
|
341
|
+ },
|
342
|
+ (ValType::I64, TermType::Integer | TermType::Float) => match term.decode::<i64>() {
|
343
|
+ Ok(value) => WasmValue::I64(value),
|
344
|
+ Err(_) => return None,
|
345
|
+ },
|
346
|
+ (ValType::F32, TermType::Integer | TermType::Float) => match term.decode::<f32>() {
|
347
|
+ Ok(value) => {
|
348
|
+ if value.is_finite() {
|
349
|
+ WasmValue::F32(value)
|
350
|
+ } else {
|
351
|
+ return None;
|
352
|
+ }
|
353
|
+ }
|
354
|
+ Err(_) => return None,
|
355
|
+ },
|
356
|
+ (ValType::F64, TermType::Integer | TermType::Float) => match term.decode::<f64>() {
|
357
|
+ Ok(value) => WasmValue::F64(value),
|
358
|
+ Err(_) => return None,
|
359
|
+ },
|
360
|
+ (ValType::V128, TermType::Integer | TermType::Float) => {
|
361
|
+ match term.decode::<rustler::BigInt>() {
|
362
|
+ Ok(value) => {
|
363
|
+ let (_sign, mut bytes_vec) = value.to_bytes_be();
|
364
|
+ if value < rustler::BigInt::ZERO {
|
365
|
+ return None;
|
366
|
+ }
|
367
|
+
|
368
|
+ // prepend 0 bytes to make it 16 bytes long. `to_bytes_be()` only returns leading non-zero bytes
|
369
|
+ while bytes_vec.len() < 16 {
|
370
|
+ bytes_vec.insert(0, 0);
|
371
|
+ }
|
372
|
+ let bytes: [u8; 16] = match bytes_vec.len() {
|
373
|
+ 16 => {
|
374
|
+ let mut bytes = [0; 16];
|
375
|
+ bytes.copy_from_slice(&bytes_vec);
|
376
|
+ bytes
|
377
|
+ }
|
378
|
+ _ => return None,
|
379
|
+ };
|
380
|
+ WasmValue::V128(u128::from_be_bytes(bytes))
|
381
|
+ }
|
382
|
+ Err(_) => return None,
|
383
|
+ }
|
384
|
+ }
|
385
|
+ (_val_type, _term_type) => return None,
|
386
|
+ };
|
387
|
+
|
388
|
+ Some(value)
|
226
389
|
}
|
227
390
|
|
228
391
|
pub fn decode_function_param_terms(
|
|
@@ -243,56 +406,23 @@ pub fn decode_function_param_terms(
|
243
406
|
.zip(function_param_terms.into_iter())
|
244
407
|
.enumerate()
|
245
408
|
{
|
246
|
- let value = match (param, given_param.get_type()) {
|
247
|
- (ValType::I32, TermType::Number) => match given_param.decode::<i32>() {
|
248
|
- Ok(value) => WasmValue::I32(value),
|
249
|
- Err(_) => {
|
250
|
- return Err(format!(
|
251
|
- "Cannot convert argument #{} to a WebAssembly i32 value.",
|
252
|
- nth + 1
|
253
|
- ));
|
254
|
- }
|
255
|
- },
|
256
|
- (ValType::I64, TermType::Number) => match given_param.decode::<i64>() {
|
257
|
- Ok(value) => WasmValue::I64(value),
|
258
|
- Err(_) => {
|
259
|
- return Err(format!(
|
260
|
- "Cannot convert argument #{} to a WebAssembly i64 value.",
|
261
|
- nth + 1
|
262
|
- ));
|
263
|
- }
|
264
|
- },
|
265
|
- (ValType::F32, TermType::Number) => match given_param.decode::<f32>() {
|
266
|
- Ok(value) => {
|
267
|
- if value.is_finite() {
|
268
|
- WasmValue::F32(value)
|
269
|
- } else {
|
270
|
- return Err(format!(
|
271
|
- "Cannot convert argument #{} to a WebAssembly f32 value.",
|
272
|
- nth + 1
|
273
|
- ));
|
274
|
- }
|
275
|
- }
|
276
|
- Err(_) => {
|
277
|
- return Err(format!(
|
278
|
- "Cannot convert argument #{} to a WebAssembly f32 value.",
|
279
|
- nth + 1
|
280
|
- ));
|
281
|
- }
|
282
|
- },
|
283
|
- (ValType::F64, TermType::Number) => match given_param.decode::<f64>() {
|
284
|
- Ok(value) => WasmValue::F64(value),
|
285
|
- Err(_) => {
|
286
|
- return Err(format!(
|
287
|
- "Cannot convert argument #{} to a WebAssembly f64 value.",
|
288
|
- nth + 1
|
289
|
- ));
|
290
|
- }
|
291
|
- },
|
409
|
+ let value = match (
|
410
|
+ decode_term_as_wasm_value(param.clone(), given_param),
|
411
|
+ given_param.get_type(),
|
412
|
+ ) {
|
413
|
+ (Some(value), _) => value,
|
414
|
+ (_, TermType::Integer | TermType::Float) => {
|
415
|
+ return Err(format!(
|
416
|
+ "Cannot convert argument #{} to a WebAssembly {} value.",
|
417
|
+ nth + 1,
|
418
|
+ format!("{:?}", param).to_lowercase()
|
419
|
+ ))
|
420
|
+ }
|
292
421
|
(_, term_type) => {
|
293
422
|
return Err(format!(
|
294
|
- "Cannot convert argument #{} to a WebAssembly value. Given `{:?}`.",
|
423
|
+ "Cannot convert argument #{} to a WebAssembly {:?} value. Given `{:?}`.",
|
295
424
|
nth + 1,
|
425
|
+ param,
|
296
426
|
PrintableTermType::PrintTerm(term_type)
|
297
427
|
));
|
298
428
|
}
|
|
@@ -310,6 +440,7 @@ pub fn map_wasm_values_to_vals(values: &[WasmValue]) -> Vec<Val> {
|
310
440
|
WasmValue::I64(value) => (*value).into(),
|
311
441
|
WasmValue::F32(value) => (*value).into(),
|
312
442
|
WasmValue::F64(value) => (*value).into(),
|
443
|
+ WasmValue::V128(value) => (*value).into(),
|
313
444
|
})
|
314
445
|
.collect()
|
315
446
|
}
|
changed
native/wasmex/src/lib.rs
|
@@ -10,54 +10,4 @@ pub mod pipe;
|
10
10
|
pub mod printable_term_type;
|
11
11
|
pub mod store;
|
12
12
|
|
13
|
- #[macro_use]
|
14
|
- extern crate rustler;
|
15
|
-
|
16
|
- use rustler::{Env, Term};
|
17
|
-
|
18
|
- rustler::init! {
|
19
|
- "Elixir.Wasmex.Native",
|
20
|
- [
|
21
|
- engine::new,
|
22
|
- engine::precompile_module,
|
23
|
- instance::call_exported_function,
|
24
|
- instance::function_export_exists,
|
25
|
- instance::new,
|
26
|
- instance::receive_callback_result,
|
27
|
- memory::from_instance,
|
28
|
- memory::get_byte,
|
29
|
- memory::grow,
|
30
|
- memory::read_binary,
|
31
|
- memory::set_byte,
|
32
|
- memory::size,
|
33
|
- memory::write_binary,
|
34
|
- module::compile,
|
35
|
- module::exports,
|
36
|
- module::imports,
|
37
|
- module::name,
|
38
|
- module::serialize,
|
39
|
- module::unsafe_deserialize,
|
40
|
- pipe::new,
|
41
|
- pipe::read_binary,
|
42
|
- pipe::seek,
|
43
|
- pipe::size,
|
44
|
- pipe::write_binary,
|
45
|
- store::add_fuel,
|
46
|
- store::consume_fuel,
|
47
|
- store::fuel_consumed,
|
48
|
- store::new_wasi,
|
49
|
- store::new,
|
50
|
- ],
|
51
|
- load = on_load
|
52
|
- }
|
53
|
-
|
54
|
- fn on_load(env: Env, _info: Term) -> bool {
|
55
|
- rustler::resource!(engine::EngineResource, env);
|
56
|
- rustler::resource!(environment::CallbackTokenResource, env);
|
57
|
- rustler::resource!(instance::InstanceResource, env);
|
58
|
- rustler::resource!(memory::MemoryResource, env);
|
59
|
- rustler::resource!(module::ModuleResource, env);
|
60
|
- rustler::resource!(pipe::PipeResource, env);
|
61
|
- rustler::resource!(store::StoreOrCallerResource, env);
|
62
|
- true
|
63
|
- }
|
13
|
+ rustler::init!("Elixir.Wasmex.Native");
|
changed
native/wasmex/src/memory.rs
|
@@ -1,20 +1,19 @@
|
1
1
|
//! Memory API of an WebAssembly instance.
|
2
2
|
|
3
|
- use std::io::Write;
|
4
|
- use std::sync::Mutex;
|
5
|
-
|
6
|
- use rustler::resource::ResourceArc;
|
7
|
- use rustler::{Atom, Binary, Error, NewBinary, NifResult, Term};
|
8
|
-
|
9
|
- use wasmtime::{Instance, Memory, Store};
|
10
|
-
|
11
3
|
use crate::store::{StoreOrCaller, StoreOrCallerResource};
|
12
4
|
use crate::{atoms, instance};
|
5
|
+ use rustler::{Atom, Binary, Error, NewBinary, NifResult, ResourceArc, Term};
|
6
|
+ use std::io::Write;
|
7
|
+ use std::sync::Mutex;
|
8
|
+ use wasmtime::{Instance, Memory, Store};
|
13
9
|
|
14
10
|
pub struct MemoryResource {
|
15
11
|
pub inner: Mutex<Memory>,
|
16
12
|
}
|
17
13
|
|
14
|
+ #[rustler::resource_impl()]
|
15
|
+ impl rustler::Resource for MemoryResource {}
|
16
|
+
|
18
17
|
#[rustler::nif(name = "memory_from_instance")]
|
19
18
|
pub fn from_instance(
|
20
19
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
changed
native/wasmex/src/module.rs
|
@@ -1,24 +1,23 @@
|
1
|
- use rustler::{
|
2
|
- resource::ResourceArc,
|
3
|
- types::{binary::Binary, tuple::make_tuple},
|
4
|
- Atom, NifResult, OwnedBinary, Term,
|
5
|
- };
|
6
|
- use std::{collections::HashMap, sync::Mutex};
|
7
|
-
|
8
|
- use wasmtime::{
|
9
|
- ExternType, FuncType, GlobalType, MemoryType, Module, Mutability, TableType, ValType,
|
10
|
- };
|
11
|
-
|
12
1
|
use crate::{
|
13
2
|
atoms,
|
14
3
|
engine::{unwrap_engine, EngineResource},
|
15
4
|
store::{StoreOrCaller, StoreOrCallerResource},
|
16
5
|
};
|
6
|
+ use rustler::{
|
7
|
+ types::tuple::make_tuple, Binary, Encoder, Env, NifResult, OwnedBinary, ResourceArc, Term,
|
8
|
+ };
|
9
|
+ use std::{collections::HashMap, sync::Mutex};
|
10
|
+ use wasmtime::{
|
11
|
+ ExternType, FuncType, GlobalType, MemoryType, Module, Mutability, RefType, TableType, ValType,
|
12
|
+ };
|
17
13
|
|
18
14
|
pub struct ModuleResource {
|
19
15
|
pub inner: Mutex<Module>,
|
20
16
|
}
|
21
17
|
|
18
|
+ #[rustler::resource_impl()]
|
19
|
+ impl rustler::Resource for ModuleResource {}
|
20
|
+
|
22
21
|
#[rustler::nif(name = "module_compile", schedule = "DirtyCpu")]
|
23
22
|
pub fn compile(
|
24
23
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
|
@@ -111,19 +110,62 @@ pub fn imports(env: rustler::Env, module_resource: ResourceArc<ModuleResource>)
|
111
110
|
Ok(map)
|
112
111
|
}
|
113
112
|
|
113
|
+ enum WasmValueType {
|
114
|
+ I32,
|
115
|
+ I64,
|
116
|
+ F32,
|
117
|
+ F64,
|
118
|
+ V128,
|
119
|
+ Ref(String),
|
120
|
+ }
|
121
|
+
|
122
|
+ impl<'a> Encoder for WasmValueType {
|
123
|
+ fn encode<'b>(&self, env: Env<'b>) -> Term<'b> {
|
124
|
+ match self {
|
125
|
+ Self::I32 => atoms::i32().encode(env),
|
126
|
+ Self::I64 => atoms::i64().encode(env),
|
127
|
+ Self::F32 => atoms::f32().encode(env),
|
128
|
+ Self::F64 => atoms::f64().encode(env),
|
129
|
+ Self::V128 => atoms::v128().encode(env),
|
130
|
+ Self::Ref(ref_type) => (atoms::reference(), ref_type).encode(env),
|
131
|
+ }
|
132
|
+ }
|
133
|
+ }
|
134
|
+
|
135
|
+ impl From<&ValType> for WasmValueType {
|
136
|
+ fn from(val_type: &ValType) -> Self {
|
137
|
+ match val_type {
|
138
|
+ ValType::I32 => Self::I32,
|
139
|
+ ValType::I64 => Self::I64,
|
140
|
+ ValType::F32 => Self::F32,
|
141
|
+ ValType::F64 => Self::F64,
|
142
|
+ ValType::V128 => Self::V128,
|
143
|
+ ValType::Ref(ref_type) => Self::Ref(ref_type.to_string()),
|
144
|
+ }
|
145
|
+ }
|
146
|
+ }
|
147
|
+
|
148
|
+ impl From<&RefType> for WasmValueType {
|
149
|
+ fn from(ref_type: &RefType) -> Self {
|
150
|
+ Self::Ref(ref_type.to_string())
|
151
|
+ }
|
152
|
+ }
|
153
|
+
|
114
154
|
fn function_info<'a>(env: rustler::Env<'a>, ty: &FuncType) -> Term<'a> {
|
115
155
|
let params = ty
|
116
156
|
.params()
|
117
|
- .fold(Term::list_new_empty(env), |acc, param_type| {
|
118
|
- acc.list_prepend(val_type_to_atom(¶m_type).to_term(env))
|
157
|
+ .fold(Term::list_new_empty(env), |acc, ref param_type| {
|
158
|
+ let typ: WasmValueType = param_type.into();
|
159
|
+ acc.list_prepend(typ.encode(env))
|
119
160
|
});
|
120
161
|
let params = params
|
121
162
|
.list_reverse()
|
122
163
|
.expect("cannot fail, its always a list");
|
123
164
|
let results = ty
|
124
165
|
.results()
|
125
|
- .fold(Term::list_new_empty(env), |acc, param_type| {
|
126
|
- acc.list_prepend(val_type_to_atom(¶m_type).to_term(env))
|
166
|
+ .fold(Term::list_new_empty(env), |acc, ref param_type| {
|
167
|
+ let typ: WasmValueType = param_type.into();
|
168
|
+ acc.list_prepend(typ.encode(env))
|
127
169
|
});
|
128
170
|
let results = results
|
129
171
|
.list_reverse()
|
|
@@ -132,18 +174,6 @@ fn function_info<'a>(env: rustler::Env<'a>, ty: &FuncType) -> Term<'a> {
|
132
174
|
make_tuple(env, &terms)
|
133
175
|
}
|
134
176
|
|
135
|
- fn val_type_to_atom(val_type: &ValType) -> Atom {
|
136
|
- match val_type {
|
137
|
- ValType::I32 => atoms::i32(),
|
138
|
- ValType::I64 => atoms::i64(),
|
139
|
- ValType::F32 => atoms::f32(),
|
140
|
- ValType::F64 => atoms::f64(),
|
141
|
- ValType::V128 => atoms::v128(),
|
142
|
- ValType::ExternRef => atoms::extern_ref(),
|
143
|
- ValType::FuncRef => atoms::func_ref(),
|
144
|
- }
|
145
|
- }
|
146
|
-
|
147
177
|
fn global_info<'a>(env: rustler::Env<'a>, global_type: &GlobalType) -> Term<'a> {
|
148
178
|
let mut map = rustler::Term::map_new(env);
|
149
179
|
match global_type.mutability() {
|
|
@@ -161,9 +191,9 @@ fn global_info<'a>(env: rustler::Env<'a>, global_type: &GlobalType) -> Term<'a>
|
161
191
|
.expect("cannot fail; is always a map")
|
162
192
|
}
|
163
193
|
}
|
164
|
- let ty = val_type_to_atom(global_type.content()).to_term(env);
|
194
|
+ let ty: WasmValueType = global_type.content().into();
|
165
195
|
map = map
|
166
|
- .map_put(atoms::__type__().to_term(env), ty)
|
196
|
+ .map_put(atoms::__type__().to_term(env), ty.encode(env))
|
167
197
|
.expect("cannot fail; is always a map");
|
168
198
|
let terms = vec![atoms::global().to_term(env), map];
|
169
199
|
make_tuple(env, &terms)
|
|
@@ -185,7 +215,7 @@ fn table_info<'a>(env: rustler::Env<'a>, table_type: &TableType) -> Term<'a> {
|
185
215
|
rustler::Encoder::encode(&table_type.minimum(), env),
|
186
216
|
)
|
187
217
|
.expect("cannot fail; is always a map");
|
188
|
- let ty = val_type_to_atom(&table_type.element()).to_term(env);
|
218
|
+ let ty: WasmValueType = table_type.element().into();
|
189
219
|
map = map
|
190
220
|
.map_put(atoms::__type__().to_term(env), ty)
|
191
221
|
.expect("cannot fail; is always a map");
|
changed
native/wasmex/src/pipe.rs
|
@@ -1,17 +1,14 @@
|
1
1
|
//! A Pipe is a file buffer hold in memory.
|
2
2
|
//! It can, for example, be used to replace stdin/stdout/stderr of a WASI module.
|
3
3
|
|
4
|
+ use rustler::{Encoder, ResourceArc, Term};
|
4
5
|
use std::any::Any;
|
5
|
- use std::io::{self, Read, Seek};
|
6
|
- use std::io::{Cursor, Write};
|
6
|
+ use std::io::{self, Cursor, Read, Seek, Write};
|
7
7
|
use std::sync::{Arc, Mutex, RwLock};
|
8
|
-
|
9
|
- use rustler::resource::ResourceArc;
|
10
|
- use rustler::{Encoder, Term};
|
11
|
-
|
12
|
- use wasi_common::file::{FdFlags, FileType};
|
13
|
- use wasi_common::Error;
|
14
|
- use wasi_common::WasiFile;
|
8
|
+ use wasi_common::{
|
9
|
+ file::{FdFlags, FileType},
|
10
|
+ Error, WasiFile,
|
11
|
+ };
|
15
12
|
|
16
13
|
use crate::atoms;
|
17
14
|
|
|
@@ -108,6 +105,9 @@ pub struct PipeResource {
|
108
105
|
pub pipe: Mutex<Pipe>,
|
109
106
|
}
|
110
107
|
|
108
|
+ #[rustler::resource_impl()]
|
109
|
+ impl rustler::Resource for PipeResource {}
|
110
|
+
|
111
111
|
#[rustler::nif(name = "pipe_new")]
|
112
112
|
pub fn new() -> Result<ResourceArc<PipeResource>, rustler::Error> {
|
113
113
|
let pipe = Pipe::new();
|
changed
native/wasmex/src/printable_term_type.rs
|
@@ -1,4 +1,4 @@
|
1
|
- use rustler::dynamic::TermType;
|
1
|
+ use rustler::TermType;
|
2
2
|
|
3
3
|
// PrintableTermType is a workaround for rustler::dynamic::TermType not having the Debug trait.
|
4
4
|
pub enum PrintableTermType {
|
|
@@ -12,12 +12,11 @@ impl fmt::Debug for PrintableTermType {
|
12
12
|
match self {
|
13
13
|
PrintTerm(TermType::Atom) => write!(f, "Atom"),
|
14
14
|
PrintTerm(TermType::Binary) => write!(f, "Binary"),
|
15
|
- PrintTerm(TermType::EmptyList) => write!(f, "EmptyList"),
|
16
|
- PrintTerm(TermType::Exception) => write!(f, "Exception"),
|
17
15
|
PrintTerm(TermType::Fun) => write!(f, "Fun"),
|
18
16
|
PrintTerm(TermType::List) => write!(f, "List"),
|
19
17
|
PrintTerm(TermType::Map) => write!(f, "Map"),
|
20
|
- PrintTerm(TermType::Number) => write!(f, "Number"),
|
18
|
+ PrintTerm(TermType::Integer) => write!(f, "Integer"),
|
19
|
+ PrintTerm(TermType::Float) => write!(f, "Float"),
|
21
20
|
PrintTerm(TermType::Pid) => write!(f, "Pid"),
|
22
21
|
PrintTerm(TermType::Port) => write!(f, "Port"),
|
23
22
|
PrintTerm(TermType::Ref) => write!(f, "Ref"),
|
changed
native/wasmex/src/store.rs
|
@@ -3,20 +3,18 @@
|
3
3
|
// see: https://github.com/rust-lang/rust-clippy/issues/9778
|
4
4
|
#![allow(clippy::needless_borrow)]
|
5
5
|
|
6
|
- use rustler::{resource::ResourceArc, Error};
|
7
|
- use std::{collections::HashMap, sync::Mutex};
|
8
|
- use wasi_common::WasiCtx;
|
9
|
- use wasmtime::{
|
10
|
- AsContext, AsContextMut, Engine, Store, StoreContext, StoreContextMut, StoreLimits,
|
11
|
- StoreLimitsBuilder,
|
12
|
- };
|
13
|
- use wasmtime_wasi::WasiCtxBuilder;
|
14
|
-
|
15
6
|
use crate::{
|
16
7
|
caller::{get_caller, get_caller_mut},
|
17
8
|
engine::{unwrap_engine, EngineResource},
|
18
9
|
pipe::{Pipe, PipeResource},
|
19
10
|
};
|
11
|
+ use rustler::{Error, NifStruct, ResourceArc};
|
12
|
+ use std::{collections::HashMap, sync::Mutex};
|
13
|
+ use wasi_common::{sync::WasiCtxBuilder, WasiCtx};
|
14
|
+ use wasmtime::{
|
15
|
+ AsContext, AsContextMut, Engine, Store, StoreContext, StoreContextMut, StoreLimits,
|
16
|
+ StoreLimitsBuilder,
|
17
|
+ };
|
20
18
|
|
21
19
|
#[derive(Debug, NifStruct)]
|
22
20
|
#[module = "Wasmex.Wasi.PreopenOptions"]
|
|
@@ -104,6 +102,9 @@ pub struct StoreOrCallerResource {
|
104
102
|
pub inner: Mutex<StoreOrCaller>,
|
105
103
|
}
|
106
104
|
|
105
|
+ #[rustler::resource_impl()]
|
106
|
+ impl rustler::Resource for StoreOrCallerResource {}
|
107
|
+
|
107
108
|
impl StoreOrCaller {
|
108
109
|
pub(crate) fn engine(&self) -> &Engine {
|
109
110
|
match self {
|
|
@@ -171,20 +172,24 @@ pub fn new_wasi(
|
171
172
|
.map(|(k, v)| (k.to_string(), v.to_string()))
|
172
173
|
.collect::<Vec<_>>();
|
173
174
|
|
174
|
- let builder = WasiCtxBuilder::new()
|
175
|
+ let mut builder = WasiCtxBuilder::new();
|
176
|
+
|
177
|
+ builder
|
175
178
|
.args(&options.args)
|
176
179
|
.map_err(|err| Error::Term(Box::new(err.to_string())))?
|
177
180
|
.envs(wasi_env)
|
178
181
|
.map_err(|err| Error::Term(Box::new(err.to_string())))?;
|
179
182
|
|
180
|
- let builder = add_pipe(options.stdin, builder, |pipe, builder| builder.stdin(pipe))?;
|
181
|
- let builder = add_pipe(options.stdout, builder, |pipe, builder| {
|
182
|
- builder.stdout(pipe)
|
183
|
+ add_pipe(options.stdin, &mut builder, |pipe, builder| {
|
184
|
+ builder.stdin(pipe);
|
183
185
|
})?;
|
184
|
- let builder = add_pipe(options.stderr, builder, |pipe, builder| {
|
185
|
- builder.stderr(pipe)
|
186
|
+ add_pipe(options.stdout, &mut builder, |pipe, builder| {
|
187
|
+ builder.stdout(pipe);
|
186
188
|
})?;
|
187
|
- let builder = wasi_preopen_directories(options.preopen, builder)?;
|
189
|
+ add_pipe(options.stderr, &mut builder, |pipe, builder| {
|
190
|
+ builder.stderr(pipe);
|
191
|
+ })?;
|
192
|
+ wasi_preopen_directories(options.preopen, &mut builder)?;
|
188
193
|
let wasi_ctx = builder.build();
|
189
194
|
|
190
195
|
let engine = unwrap_engine(engine_resource)?;
|
|
@@ -207,28 +212,8 @@ pub fn new_wasi(
|
207
212
|
Ok(resource)
|
208
213
|
}
|
209
214
|
|
210
|
- #[rustler::nif(name = "store_or_caller_fuel_consumed")]
|
211
|
- pub fn fuel_consumed(
|
212
|
- store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
213
|
- ) -> Result<Option<u64>, rustler::Error> {
|
214
|
- let store_or_caller: &StoreOrCaller =
|
215
|
- &*(store_or_caller_resource.inner.try_lock().map_err(|e| {
|
216
|
- rustler::Error::Term(Box::new(format!("Could not unlock store resource: {e}")))
|
217
|
- })?);
|
218
|
- match store_or_caller {
|
219
|
- StoreOrCaller::Store(store) => Ok(store.fuel_consumed()),
|
220
|
- StoreOrCaller::Caller(token) => get_caller(token)
|
221
|
- .ok_or_else(|| {
|
222
|
- rustler::Error::Term(Box::new(
|
223
|
- "Caller is not valid. Only use a caller within its own function scope.",
|
224
|
- ))
|
225
|
- })
|
226
|
- .map(|c| c.fuel_consumed()),
|
227
|
- }
|
228
|
- }
|
229
|
-
|
230
|
- #[rustler::nif(name = "store_or_caller_add_fuel")]
|
231
|
- pub fn add_fuel(
|
215
|
+ #[rustler::nif(name = "store_or_caller_set_fuel")]
|
216
|
+ pub fn set_fuel(
|
232
217
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
233
218
|
fuel: u64,
|
234
219
|
) -> Result<(), rustler::Error> {
|
|
@@ -237,45 +222,44 @@ pub fn add_fuel(
|
237
222
|
rustler::Error::Term(Box::new(format!("Could not unlock store resource: {e}")))
|
238
223
|
})?);
|
239
224
|
match store_or_caller {
|
240
|
- StoreOrCaller::Store(store) => store.add_fuel(fuel),
|
241
|
- StoreOrCaller::Caller(token) => get_caller_mut(token)
|
225
|
+ StoreOrCaller::Store(store) => store.set_fuel(fuel),
|
226
|
+ StoreOrCaller::Caller(token) => get_caller_mut(&token)
|
242
227
|
.ok_or_else(|| {
|
243
228
|
rustler::Error::Term(Box::new(
|
244
229
|
"Caller is not valid. Only use a caller within its own function scope.",
|
245
230
|
))
|
246
231
|
})
|
247
|
- .map(|c| c.add_fuel(fuel))?,
|
232
|
+ .map(|c| c.set_fuel(fuel))?,
|
248
233
|
}
|
249
|
- .map_err(|e| rustler::Error::Term(Box::new(format!("Could not add fuel to store: {e}"))))
|
234
|
+ .map_err(|e| rustler::Error::Term(Box::new(format!("Could not set fuel: {e}"))))
|
250
235
|
}
|
251
236
|
|
252
|
- #[rustler::nif(name = "store_or_caller_consume_fuel")]
|
253
|
- pub fn consume_fuel(
|
237
|
+ #[rustler::nif(name = "store_or_caller_get_fuel")]
|
238
|
+ pub fn get_fuel(
|
254
239
|
store_or_caller_resource: ResourceArc<StoreOrCallerResource>,
|
255
|
- fuel: u64,
|
256
240
|
) -> Result<u64, rustler::Error> {
|
257
241
|
let store_or_caller: &mut StoreOrCaller =
|
258
242
|
&mut *(store_or_caller_resource.inner.try_lock().map_err(|e| {
|
259
243
|
rustler::Error::Term(Box::new(format!("Could not unlock store resource: {e}")))
|
260
244
|
})?);
|
261
245
|
match store_or_caller {
|
262
|
- StoreOrCaller::Store(store) => store.consume_fuel(fuel),
|
263
|
- StoreOrCaller::Caller(token) => get_caller_mut(token)
|
246
|
+ StoreOrCaller::Store(store) => store.get_fuel(),
|
247
|
+ StoreOrCaller::Caller(token) => get_caller_mut(&token)
|
264
248
|
.ok_or_else(|| {
|
265
249
|
rustler::Error::Term(Box::new(
|
266
250
|
"Caller is not valid. Only use a caller within its own function scope.",
|
267
251
|
))
|
268
252
|
})
|
269
|
- .map(|c| c.consume_fuel(fuel))?,
|
253
|
+ .map(|c| c.get_fuel())?,
|
270
254
|
}
|
271
|
- .map_err(|e| rustler::Error::Term(Box::new(format!("Could not consume fuel: {e}"))))
|
255
|
+ .map_err(|e| rustler::Error::Term(Box::new(format!("Could not get fuel: {e}"))))
|
272
256
|
}
|
273
257
|
|
274
258
|
fn add_pipe(
|
275
259
|
pipe: Option<ExPipe>,
|
276
|
- builder: WasiCtxBuilder,
|
277
|
- f: fn(Box<Pipe>, WasiCtxBuilder) -> WasiCtxBuilder,
|
278
|
- ) -> Result<WasiCtxBuilder, rustler::Error> {
|
260
|
+ builder: &mut WasiCtxBuilder,
|
261
|
+ f: fn(Box<Pipe>, &mut WasiCtxBuilder) -> (),
|
262
|
+ ) -> Result<(), rustler::Error> {
|
279
263
|
if let Some(ExPipe { resource }) = pipe {
|
280
264
|
let pipe = resource.pipe.lock().map_err(|_e| {
|
281
265
|
rustler::Error::Term(Box::new(
|
|
@@ -283,33 +267,31 @@ fn add_pipe(
|
283
267
|
))
|
284
268
|
})?;
|
285
269
|
let pipe = Box::new(pipe.clone());
|
286
|
- return Ok(f(pipe, builder));
|
270
|
+ f(pipe, builder);
|
287
271
|
}
|
288
|
- Ok(builder)
|
272
|
+ Ok(())
|
289
273
|
}
|
290
274
|
|
291
275
|
fn wasi_preopen_directories(
|
292
276
|
preopens: Vec<ExWasiPreopenOptions>,
|
293
|
- builder: WasiCtxBuilder,
|
294
|
- ) -> Result<WasiCtxBuilder, rustler::Error> {
|
295
|
- let builder = preopens.iter().fold(Ok(builder), |builder, preopen| {
|
296
|
- preopen_directory(builder, preopen)
|
297
|
- })?;
|
298
|
- Ok(builder)
|
277
|
+ builder: &mut WasiCtxBuilder,
|
278
|
+ ) -> Result<(), rustler::Error> {
|
279
|
+ preopens
|
280
|
+ .iter()
|
281
|
+ .try_fold((), |_acc, preopen| preopen_directory(builder, preopen))
|
299
282
|
}
|
300
283
|
|
301
284
|
fn preopen_directory(
|
302
|
- builder: Result<WasiCtxBuilder, Error>,
|
285
|
+ builder: &mut WasiCtxBuilder,
|
303
286
|
preopen: &ExWasiPreopenOptions,
|
304
|
- ) -> Result<WasiCtxBuilder, Error> {
|
305
|
- let builder = builder?;
|
287
|
+ ) -> Result<(), Error> {
|
306
288
|
let path = &preopen.path;
|
307
|
- let dir = wasmtime_wasi::Dir::from_std_file(
|
289
|
+ let dir = wasi_common::sync::Dir::from_std_file(
|
308
290
|
std::fs::File::open(path).map_err(|err| rustler::Error::Term(Box::new(err.to_string())))?,
|
309
291
|
);
|
310
292
|
let guest_path = preopen.alias.as_ref().unwrap_or(path);
|
311
|
- let builder = builder
|
293
|
+ builder
|
312
294
|
.preopened_dir(dir, guest_path)
|
313
295
|
.map_err(|err| Error::Term(Box::new(err.to_string())))?;
|
314
|
- Ok(builder)
|
296
|
+ Ok(())
|
315
297
|
}
|