veloren/voxygen/i18n/Cargo.toml
2022-08-07 16:21:53 +03:00

33 lines
1006 B
TOML

[package]
authors = ["juliancoffee <lightdarkdaughter@gmail.com>"]
edition = "2021"
name = "veloren-voxygen-i18n"
description = "Crate for internalization and diagnostic of existing localizations."
version = "0.13.0"
[dependencies]
# Assets
common-assets = {package = "veloren-common-assets", path = "../../common/assets"}
ron = "0.7"
serde = { version = "1.0", features = ["derive"] }
# Localization
unic-langid = { version = "0.9"}
intl-memoizer = { git = "https://github.com/juliancoffee/fluent-rs.git", branch = "patched"}
fluent = { git = "https://github.com/juliancoffee/fluent-rs.git", branch = "patched"}
fluent-bundle = { git = "https://github.com/juliancoffee/fluent-rs.git", branch = "patched"}
# Utility
hashbrown = { version = "0.12", features = ["serde", "nightly"] }
deunicode = "1.0"
tracing = "0.1"
# Bin
serde-tuple-vec-map = "1.0"
# FIXME: remove before merge
[[bin]]
name = "i18n-migrate"
required-features = ["i18n-migrate"]
path = "src/bin/migrate.rs"
[features]
i18n-migrate = []