mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
31 lines
872 B
TOML
31 lines
872 B
TOML
[package]
|
|
authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Rémy Phelipot"]
|
|
edition = "2021"
|
|
name = "veloren-voxygen-i18n"
|
|
description = "Crate for internalization and diagnostic of existing localizations."
|
|
version = "0.10.0"
|
|
|
|
[[bin]]
|
|
name = "i18n-check"
|
|
required-features = ["bin"]
|
|
|
|
[dependencies]
|
|
# Assets
|
|
hashbrown = { version = "0.11", 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"]
|