2 unstable releases
0.2.0 | Feb 15, 2023 |
---|---|
0.1.0 | Dec 15, 2022 |
#301 in WebAssembly
270KB
3K
SLoC
Crux HTTP capability
This crate contains the Http
capability, which can be used to ask the Shell to make an HTTP request.
For an example of how to use the capability, see the integration test.
The code for this was largely copied from surf
with some modifications made to fit into the crux paradigm.
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
).
Dependencies
~7–14MB
~266K SLoC