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.
Crux capabilities teach Crux how to interact with the shell when performing side effects. They do the following:
Request
struct to instruct the Shell how to perform the side effect on behalf of the CoreResponse
struct to hold the data returned by the Shell after the side effect has completedCommand
(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
).