Crux — Cross-platform app development in Rust

Crux helps you share your app's business logic and behavior across mobile (iOS and Android) and web, as a single, reusable core built with Rust.

Unlike React Native, the user interface layer is built natively, with modern declarative UI frameworks such as Swift UI, Jetpack Compose and React/Vue or a WASM based framework on the web.

The UI layer is as thin as it can be, and all other work is done by the shared core. The interface with the core has static type checking across languages.

Architectural Overview

Architecture

The fundamental architectural concept used here is the strict separation of pure computational tasks from tasks that cause side effects. This concept has been borrowed from Elm.

Side-effect-free core

In the above diagram, the inner "Cross-platform Rust core" is compiled and linked to the shell on each platform as a library:

In fact, because WebAssembly (Wasm) is one of the compilation targets, the core must remain side-effect free, due to the sandboxed nature of the Wasm runtime environment.

As such, the core is completely isolated and secure against software supply-chain attacks, as it has no access to any external APIs. All it can do is perform pure calculations and keep internal state.

Following the Elm architecture, the core defines the key component types within the application:

The former two are tied together by the update function, familiar from Elm, Redux or other event sourcing architectures, and has this type signature:

rust fn update(message: Message, model: &mut Model) -> Vec<Command<Message>>

The job of the update function is to process a message, update the model accordingly, and potentially request some side-effects using Commands. (The Command type is generic over the Message because each command specifies the subsequent message to be dispatched when it's completed — behaving essentially as a callback).

Application Shell

The enclosing "Platform native shell" is written using the language appropriate for the platform, and acts as the runtime environment within which all the non-pure tasks are performed. From the perspective of the core, the shell is the platform on which the core runs.

Communication Between the Application Shell and the Core

Following the Elm architecture, the interface with the core is message based. This means that the core is unable to perform anything other than pure calculations. To perform any task that creates a side-effect (such as HTTP calls or random number generation), the core must request them from the shell.

The core has a concept of Capabilities — reusable interfaces for common side-effects with request/response semantics.

This means the core interface is very simple:

Updating the user interface is considered a capability.

This design means the core can be tested very easily, without any mocking and stubbing, by simply checking the Input/Output behaviour of the three functions.

The Foreign Function Interface allowing the shell to call the above functions is provided by Mozilla's UniFFI on a mobile device, or in the browser, by wasm-pack.

In order both to send more complex data than UniFFI currently supports and to enforce the message passing semantics, all messages are serialised, sent across the boundary, then deserialised using serde_generate which also provides type generation for the foreign (non-Rust) languages.

This means that changes to types in the core, especially the Message type, propagate out into the shell implementations and cause errors where appropriate (such as an exhaustive match on an enum check).

Message Types

Three types of message are exchanged between the application and the core.

Request and Response message contain the useful payloads for the capability, along with a uuid used by the core to keep track of the continuations, i.e. what message should be dispatched when a Response has been received. The exact mechanics are not important, but it is important for the request's uuid to be passed on to the corresponding response.

Typical Message Exchange Cycle

A typical message exchange cycle is as follows:

  1. User interaction occurs in the Shell, which raises an event
  2. The Shell handles this event by constructing a message
  3. The Shell calls the Core's message function passing the Message instance as an argument
  4. The Core performs the required processing, updating both its inner state and the view model
  5. The Core returns one or more Request messages to the Shell

In the simplest case, the Core will respond to a Message by returning the single request - render (produced when the update function returns a Command::Render).

This requests that the Shell re-renders the user interface. When Command::Render is the last (or only) response from the Core, means the message cycle has terminated and the Core has now "settled".

In more complex cases however, the Core may well return multiple commands; each of which instructs the Shell to perform a side-effect-inducing task such as:

Many of these side-effecting-inducing tasks are asynchronous. Whenever the Shell then receives a response, it packages the data into further Responses that are then passed to the core for processing.

This exchange continues until the core returns a Command::Render signalling that no more side-effects are in flight.

Run the Example Locally

Refer to the local execution README

How to Start Your Own New Project

Refer to the new project README