2021-05-03 13:48:46 +00:00
|
|
|
[package]
|
2021-05-08 18:22:50 +00:00
|
|
|
authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Rémy Phelipot"]
|
2021-05-03 13:48:46 +00:00
|
|
|
edition = "2018"
|
2021-05-04 08:55:40 +00:00
|
|
|
name = "veloren-i18n"
|
|
|
|
description = "Crate for internalization and diagnostic of existing localizations."
|
2021-05-03 13:48:46 +00:00
|
|
|
version = "0.9.0"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "i18n-check"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-05-07 11:24:37 +00:00
|
|
|
# Assets
|
2021-05-04 14:13:13 +00:00
|
|
|
hashbrown = { version = "0.9", features = ["serde", "nightly"] }
|
2021-05-07 11:24:37 +00:00
|
|
|
common-assets = {package = "veloren-common-assets", path = "../../common/assets"}
|
2021-05-04 08:55:40 +00:00
|
|
|
deunicode = "1.0"
|
2021-05-03 13:48:46 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-04 08:55:40 +00:00
|
|
|
# Diagnostic
|
2021-05-09 21:49:45 +00:00
|
|
|
git2 = { version = "0.12", default-features = false }
|
2021-05-07 11:24:37 +00:00
|
|
|
ron = "0.6"
|
|
|
|
|
|
|
|
tracing = "0.1"
|