mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
f2eb1fe7c8
* Put file that needs care back into csv
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
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
|
|
clap = { version = "3.1.8", features = ["suggestions", "std"], default-features = false, optional = true }
|
|
fluent-syntax = { git = "https://github.com/juliancoffee/fluent-rs.git", branch = "patched"}
|
|
|
|
[[bin]]
|
|
name = "i18n-check"
|
|
required-features = ["bin"]
|
|
|
|
[[bin]]
|
|
name = "i18n-csv"
|
|
required-features = ["stat"]
|
|
|
|
[features]
|
|
bin = ["clap"]
|
|
stat = []
|