mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
735e8ab4ec
This gives us ability to use assets-related code in i18n without depending on whole veloren-common
22 lines
534 B
TOML
22 lines
534 B
TOML
[package]
|
|
authors = ["juliancoffee <lightdarkdaughter@gmail.com>"]
|
|
edition = "2018"
|
|
name = "veloren-i18n"
|
|
description = "Crate for internalization and diagnostic of existing localizations."
|
|
version = "0.9.0"
|
|
|
|
[[bin]]
|
|
name = "i18n-check"
|
|
|
|
[dependencies]
|
|
# Assets
|
|
hashbrown = { version = "0.9", features = ["serde", "nightly"] }
|
|
common-assets = {package = "veloren-common-assets", path = "../../common/assets"}
|
|
deunicode = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
# Diagnostic
|
|
git2 = "0.13"
|
|
ron = "0.6"
|
|
|
|
tracing = "0.1"
|