twine: update i18n usage

* update to use latest twain crate
* activate feature vor serialization, deserialization (consuming 'serde')
* use (t!) macro from twain crate consuming i18n.rs
* i18n.rs is compiled via build.rs from source
* update docu hint in translation source

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2021-06-11 12:59:59 +02:00
parent 5a21958325
commit dc463df476
3 changed files with 9 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ lazy_static = { version = "~1.4.0" }
log = { version = "~0.4.8" }
maud = { version = "~0.22.1" }
orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" }
#orbtk = { path = "../../../orbtk" }
#orbtk = { path = "../../../orbtk", branch="next" }
serde = { version = "~1", features = ["derive"] }
sdl2 = { version = "~0.34", features = ["bundled"] }
substring = { version = "~1" }
@@ -39,8 +39,9 @@ viperus = { git = "https://github.com/maurocordioli/viperus", features = ["cach
[build-dependencies]
winres = { version = "0.1.11" }
#twine = { version = "0.3.8" }
#twine = { path = "../../../twine", features = ["serde"] }
#twine = { version = "0.3.9", features = ["serde"] }
## twine with PR's
twine = { path = "../../twine", features = ["serde"] }
[features]
default = []