mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
e29ede7c97
cannot update the following dependencies: - vek: Sharps SIMD isnt upstream - tracing-subscriber: MakeWriter was adjusted and i was to lazy to fiddle with lifetimes, - refinery, rustsql: we have a custom refinery version which is incompatible with newer rustsql - equi + egui_winit + egui_wgpu_backend: i tried it in this commit but it turned out that they dependo n wgpu which we cant update - wgpu: cant update due new version doesnt support DX11 Got quinn updated which now require some dependencies to be explicit.
31 lines
864 B
TOML
31 lines
864 B
TOML
[package]
|
|
authors = ["juliancoffee <lightdarkdaughter@gmail.com>", "Rémy Phelipot"]
|
|
edition = "2018"
|
|
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.13", default-features = false, optional = true }
|
|
|
|
# Binary
|
|
clap = { version = "2.33", features = ["suggestions"], default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
git2 = { version = "0.13", default-features = false }
|
|
|
|
[features]
|
|
bin = ["git2", "clap"]
|