Crate rosetta_build[][src]

Expand description

Code generation for the Rosetta i18n library.

Usage

Code generation works within build script. You only need to configure source files and the fallback language. Please read the documentation for more information.

rosetta_build::config()
    .source("fr", "locales/fr.json")
    .source("en", "locales/en.json")
    .fallback("en")
    .generate();

Modules

Errors returned when generating code.

Structs

Builder used to configure Rosetta code generation.

Functions

Helper function that return an default RosettaBuilder.