New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codama/renderers-rust

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codama/renderers-rust

Renders Rust clients for your programs

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
556
decreased by-26.46%
Maintainers
1
Weekly downloads
 
Created
Source

Codama ➤ Renderers ➤ Rust

npm npm-downloads

This package generates Rust clients from your Codama IDLs.

Installation

pnpm install @codama/renderers-rust

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

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

Usage

Once you have a Codama 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 ./codama.mjs
import { renderVisitor } from '@codama/renderers-rust';

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

Options

The renderVisitor accepts the following options.

NameTypeDefaultDescription
deleteFolderBeforeRenderingbooleantrueWhether the base directory should be cleaned before generating new files.
formatCodebooleanfalseWhether we should use cargo fmt to format the generated code. When set to true, the crateFolder option must be provided.
toolchainstring"+stable"The toolchain to use when formatting the generated code.
crateFolderstringnoneThe path to the root folder of the Rust crate. This option is required when formatCode is set to true.
linkOverridesRecord<'accounts' | 'definedTypes' | 'instructions' | 'pdas' | 'programs' | 'resolvers', Record<string, string>>{}A object that overrides the import path of link nodes. For instance, { definedTypes: { counter: 'hooked' } } uses the hooked folder to import any link node referring to the counter type.
dependencyMapRecord<string, string>{}A mapping between import aliases and their actual crate name or path in Rust.
renderParentInstructionsbooleanfalseWhen using nested instructions, whether the parent instructions should also be rendered. When set to false (default), only the instruction leaves are being rendered.

Keywords

FAQs

Package last updated on 10 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc