Small Readme changes

This commit is contained in:
2025-11-02 12:27:48 +01:00
parent 094eeafa07
commit fc3b6435e1
2 changed files with 5 additions and 5 deletions

View File

@@ -2,11 +2,11 @@
Thin, synchronous access to the [OpenComputers II: Reimagined](https://github.com/North-Western-Development/oc2r) high-level API for Rust.
This repository is a workspace is divided into multiple crates:
This repository is a workspace and is divided into multiple crates:
- `crates/oc2r-core`: mirrors the stock Lua helpers (`devices.lua`, `robot.lua`) so you can list devices, invoke methods,
- `crates/oc2r-core`: mirrors the stock Lua helpers (`devices.lua`) so you can list devices, invoke methods,
subscribe to events, and work with the low-level RPC primitives.
- `crates/opencomputers`: companion crate that provides strongly typed wrappers for the common HLAPI peripherals.
- `crates/opencomputers`: provides strongly typed wrappers for the opencomputers HLAPI peripherals.
- `crates/minapk`: minimal Alpine-style package installer tailored for OC2R Minux.
## Development
@@ -20,7 +20,7 @@ There are more size optimisation done you can check the `.cargo/config.toml`, `C
# Compilation
Simply `cross clippy --all-targets` to compile everything
Simply do `cross clippy --all-targets` to compile everything
## Examples

View File

@@ -2,7 +2,7 @@
Minimal Rust client for the OC2R high-level API. It mirrors the bundled Lua
helper (`devices.lua`) so you can list devices, invoke methods,
and subscribe to events. For ergonomic wrappers on top of these primitives, add
and subscribe to events. For wrappers on top of these primitives, add
the [`opencomputers`](../opencomputers) crate.
## Getting Started