@kinobi-so/renderers-rust
TypeScript icon, indicating that this package has built-in type declarations

0.21.6 • Public • Published

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.

Package Sidebar

Install

npm i @kinobi-so/renderers-rust

Weekly Downloads

221

Version

0.21.6

License

MIT

Unpacked Size

286 kB

Total Files

41

Last publish

Collaborators

  • lorisleiva