crux_platform

Crates.iocrux_platform
lib.rscrux_platform
version0.1.12
sourcesrc
created_at2022-12-15 16:52:17.169483
updated_at2024-05-23 07:39:22.610903
descriptionPlatform capability for use with crux_core
homepage
repositoryhttps://github.com/redbadger/crux/
max_upload_size
id738122
size8,323
Stuart Harris (StuartHarris)

documentation

README

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:

  1. define a Request struct to instruct the Shell how to perform the side effect on behalf of the Core
  2. define a Response struct to hold the data returned by the Shell after the side effect has completed
  3. 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 and Response are unambiguously named (e.g. HttpRequest and HttpResponse).

Commit count: 1325

cargo fmt