mirror of https://git.sr.ht/~garritfra/sabre
4 changed files with 22 additions and 2 deletions
@ -0,0 +1,18 @@
|
||||
# Backends |
||||
|
||||
Sabre currently implements a JavaScript backend, but a C backend is in development. WASM, ARM and x86 are planned. |
||||
The backend can be specified in the `Cargo.toml` file in the root of the project: |
||||
|
||||
```toml |
||||
[features] |
||||
... |
||||
|
||||
default = ["backend_c"] |
||||
``` |
||||
|
||||
## Available Backends |
||||
|
||||
| Target Language | Identifier | Stability notice | |
||||
| :-------------- | :------------- | :-------------------- | |
||||
| Node.js | `backend_node` | mostly stable | |
||||
| C | `backend_c` | in active development | |
Loading…
Reference in new issue