veloren/voxygen/i18n/Cargo.toml

31 lines
872 B
TOML
Raw Normal View History

[package]
2021-05-08 18:22:50 +00:00
authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Rémy Phelipot"]
2022-01-26 13:13:05 +00:00
edition = "2021"
2021-07-29 18:47:45 +00:00
name = "veloren-voxygen-i18n"
description = "Crate for internalization and diagnostic of existing localizations."
2021-06-12 08:14:07 +00:00
version = "0.10.0"
[[bin]]
name = "i18n-check"
required-features = ["bin"]
[dependencies]
# Assets
2022-07-06 07:20:22 +00:00
hashbrown = { version = "0.12", features = ["serde", "nightly"] }
common-assets = {package = "veloren-common-assets", path = "../../common/assets"}
deunicode = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
# Diagnostic
ron = "0.7"
git2 = { version = "0.14", default-features = false, optional = true }
# Binary
clap = { version = "3.1.8", features = ["suggestions", "std"], default-features = false, optional = true }
[dev-dependencies]
git2 = { version = "0.14", default-features = false }
[features]
bin = ["git2", "clap"]