31 lines
1017 B
TOML
31 lines
1017 B
TOML
[package]
|
|
name = "dioxus-i18n"
|
|
version = "0.5.1"
|
|
edition = "2021"
|
|
authors = ["Marc Espín <mespinsanz@gmail.com>"]
|
|
description = "i18n integration for Dioxus apps based on Fluent Project."
|
|
license = "MIT"
|
|
repository = "https://github.com/dioxus-community/dioxus-i18n"
|
|
readme = "./README.md"
|
|
categories = ["accessibility", "gui", "localization", "internationalization"]
|
|
|
|
[dependencies]
|
|
dioxus = { git = "https://github.com/matous-volf/dioxus", rev = "627d5ca5b80aeed57c23e253024665f103117f5e", default-features = false, features = [
|
|
"hooks",
|
|
"macro",
|
|
"signals",
|
|
] }
|
|
fluent = "0.17"
|
|
thiserror = "2.0"
|
|
unic-langid = { version = "0.9", features = ["macros"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
walkdir = "2.5.0"
|
|
|
|
[dev-dependencies]
|
|
dioxus = { git = "https://github.com/matous-volf/dioxus", rev = "627d5ca5b80aeed57c23e253024665f103117f5e", features = ["desktop"] }
|
|
freya = "0.3"
|
|
futures = "0.3.31"
|
|
pretty_assertions = "1.4.1"
|
|
unic-langid = { version = "0.9.5", features = ["macros"] }
|