i18nrs 0.1.9

🌐 A highly customizable Internationalization (i18n) component for WASM frameworks like Yew, Dioxus, and Leptos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/opensass/i18n-rs/refs/heads/main/assets/new-logo.webp",
    html_favicon_url = "https://github.com/opensass/i18n-rs/blob/main/assets/favicon.ico"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

#[cfg(feature = "dio")]
pub mod dioxus;

#[cfg(feature = "yew")]
pub mod yew;

pub mod config;

pub use config::{I18n, I18nConfig, StorageType};