A Rust port of runtime-go, built the Rust way rather than as a line-for-line translation.
2 crates. Each declares a description in its Cargo.toml and carries crate-level
//! docs; this table is generated from those and verified on every push.
| Crate | Published as | Go source | Summary |
|---|---|---|---|
cache |
runtime-cache |
runtime-go/cache |
Cache drivers and read-through/write-through strategies over pluggable backends |
network |
tpp-network |
runtime-go/network |
Core clients: HTTP, WebSocket, and GraphQL, over a shared ConnectionOptions |
cargo add runtime-cache # Cache drivers and read-through/write-through strategies over pluggable backends
cargo add tpp-network # Core clients: HTTP, WebSocket, and GraphQL, over a shared ConnectionOptionsEvery crate's API docs, including usage examples, are on docs.rs:
just # list the available recipes
just docs # regenerate this README from Cargo metadata
just docs-check # verify it is current (also runs in CI)Apache-2.0 — see LICENSE.