veloren/voxygen/i18n/Cargo.toml
juliancoffee 735e8ab4ec Extract common/src/assets.rs to own crate
This gives us ability to use assets-related code in i18n without
depending on whole veloren-common
2021-05-09 13:12:26 +03:00

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"