14 unstable releases (3 breaking)

new 0.4.0 May 17, 2024
0.2.0 May 14, 2024
0.1.10 Mar 24, 2024
0.1.6 Dec 3, 2023
0.1.0 Dec 15, 2022

#4 in #crux

Download history 64/week @ 2024-01-26 15/week @ 2024-02-02 15/week @ 2024-02-16 70/week @ 2024-02-23 26/week @ 2024-03-01 13/week @ 2024-03-08 3/week @ 2024-03-15 131/week @ 2024-03-22 27/week @ 2024-03-29 45/week @ 2024-04-05 22/week @ 2024-04-12 6/week @ 2024-04-19 29/week @ 2024-04-26 3/week @ 2024-05-03 208/week @ 2024-05-10

246 downloads per month

Apache-2.0

270KB
2.5K SLoC

Rust 2K SLoC // 0.0% comments TypeScript 337 SLoC // 0.1% comments Swift 35 SLoC // 0.1% comments Java 18 SLoC

Crux Key-Value Store capability

This crate contains the KeyValue capability, which can be used to ask the Shell to read from, and write to, a key-value store.

Currently it provides an interface for getting, setting, and deleting keys, checking if keys exists in the store, and listing keys that start with a prefix.

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

~2.8–4MB
~82K SLoC