github-actions[bot] f7bc9d0874 [0.21] Publish packages (#233) 1 year ago
..
e2e 3c18ceeffb Fix typo (#231) 1 year ago
public 3c18ceeffb Fix typo (#231) 1 year ago
src 33cc3b7d29 Support type aliases from DefinedTypeNodes in Rust renderer (#152) 1 year ago
test 33cc3b7d29 Support type aliases from DefinedTypeNodes in Rust renderer (#152) 1 year ago
.gitignore 9269a88573 Add renderers-rust package (#13) 1 year ago
.prettierignore bb2289e537 Make prettier ignore CHANGELOG.md files 1 year ago
CHANGELOG.md f7bc9d0874 [0.21] Publish packages (#233) 1 year ago
LICENSE 9269a88573 Add renderers-rust package (#13) 1 year ago
README.md f883c88094 Add package documentation — Part 2: renderers and validators (#105) 1 year ago
package.json f7bc9d0874 [0.21] Publish packages (#233) 1 year ago
tsconfig.declarations.json 9269a88573 Add renderers-rust package (#13) 1 year ago
tsconfig.json 9269a88573 Add renderers-rust package (#13) 1 year ago

README.md

Kinobi ➤ Renderers ➤ Rust

npm npm-downloads

This package generates Rust clients from your Kinobi IDLs.

Installation

pnpm install @kinobi-so/renderers-rust

[!NOTE] This package is not included in the main kinobi package.

However, note that the renderers package re-exports the renderVisitor function of this package as renderRustVisitor.

Usage

Once you have a Kinobi IDL, you can use the renderVisitor of this package to generate Rust clients. You will need to provide the base directory where the generated files will be saved and an optional set of options to customize the output.

// node ./kinobi.mjs
import { renderVisitor } from '@kinobi-so/renderers-rust';

const pathToGeneratedFolder = path.join(__dirname, 'clients', 'rust', 'src', 'generated');
const options = {}; // See below.
kinobi.accept(renderVisitor(pathToGeneratedFolder, options));

Options

The renderVisitor accepts the following options.

Name Type Default Description
deleteFolderBeforeRendering boolean true Whether the base directory should be cleaned before generating new files.
formatCode boolean false Whether we should use cargo fmt to format the generated code. When set to true, the crateFolder option must be provided.
toolchain string "+stable" The toolchain to use when formatting the generated code.
crateFolder string none The path to the root folder of the Rust crate. This option is required when formatCode is set to true.
dependencyMap Record<ImportFrom, string> {} A mapping between import aliases and their actual crate name or path in Rust.
renderParentInstructions boolean false When using nested instructions, whether the parent instructions should also be rendered. When set to false (default), only the instruction leaves are being rendered.