29 releases (9 breaking)

0.10.3 Oct 23, 2024
0.10.1 Sep 30, 2024
0.9.2 May 23, 2024
0.9.0 Mar 25, 2024
0.1.0 Dec 15, 2022

#27 in HTTP client

Download history 175/week @ 2024-07-16 243/week @ 2024-07-23 175/week @ 2024-07-30 559/week @ 2024-08-06 357/week @ 2024-08-13 267/week @ 2024-08-20 384/week @ 2024-08-27 557/week @ 2024-09-03 379/week @ 2024-09-10 339/week @ 2024-09-17 662/week @ 2024-09-24 793/week @ 2024-10-01 751/week @ 2024-10-08 1442/week @ 2024-10-15 1375/week @ 2024-10-22 878/week @ 2024-10-29

4,638 downloads per month

Apache-2.0

360KB
4K SLoC

Crux HTTP capability

Crate version Docs

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.

Getting Started

Add crux_http as a dependency in your app's Cargo.toml.

Typegen

This crate has a feature called typegen which supports generation of code (e.g. in TypeScript, Swift, Kotlin etc.) for the types that the Capability passes over the bridge.

Crux apps usually contain a shared crate for the behavioural "core" and a shared_types crate that is responsible for generating the types that are shared between the core and the shell.

The shared crate can re-export the capability with a typegen feature that depends on the typegen feature of the Capability crate. This way, the shared crate can ask the Capability to register its types for type generation.

e.g. in the shared crate's Cargo.toml:

[features]
typegen = ["crux_core/typegen", "crux_http/typegen"]

and in the shared_types crate's Cargo.toml:

[build-dependencies]
crux_core = { workspace = true, features = ["typegen"] }
shared = { path = "../shared", features = ["typegen"] }

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).

Dependencies

~8–13MB
~237K SLoC