20 releases
new 0.2.2 | Oct 23, 2024 |
---|---|
0.2.0 | Sep 16, 2024 |
0.1.12 | May 23, 2024 |
0.1.9 | Mar 24, 2024 |
0.1.0 | Dec 15, 2022 |
#146 in WebAssembly
380 downloads per month
255KB
2K
SLoC
Crux Platform capability
This crate contains the Platform
capability, which can be used to ask the Shell what platform it is running on.
For an example of how to use the capability, see the integration test.
About Crux Capabilities
Crux capabilities teach Crux how to interact with the shell when performing side effects. They do the following:
- define a
Request
struct to instruct the Shell how to perform the side effect on behalf of the Core - define a
Response
struct to hold the data returned by the Shell after the side effect has completed - declare one or more convenience methods for invoking the Shell's capability, each of which creates a
Command
(describing the effect and its continuation) that Crux can "execute"
Note that because Swift has no namespacing, there is currently a requirement to ensure that
Request
andResponse
are unambiguously named (e.g.HttpRequest
andHttpResponse
).
lib.rs
:
TODO mod docs
Dependencies
~2.5–4MB
~75K SLoC