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

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.