forked from kellpossible/cargo-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
authors = ["Luke Frisken <[email protected]>"]
categories = ["development-tools::cargo-plugins", "localization", "internationalization", "development-tools::build-utils"]
description = "Cargo sub-command to extract and build localization resources to embed in your application/library"
edition = "2018"
keywords = ["cargo", "build", "i18n", "gettext", "locale"]
license = "MIT"
name = "cargo-i18n"
readme = "README.md"
repository = "https://github.com/kellpossible/cargo-i18n"
version = "0.2.10"
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
i18n-embed = { version = "0.13", path = "./i18n-embed", features = ["desktop-requester", "gettext-system", "fluent-system"] }
i18n-build = { version = "0.8", path = "./i18n-build", features = ["localize"] }
i18n-config = { version = "0.4", path = "./i18n-config" }
anyhow = "1.0"
gettext = "0.4"
tr = { version = "0.1", default-features = false, features = ["gettext"] }
clap = { version = "3.0", features = ["cargo"] }
rust-embed = "^6.3"
unic-langid = "0.9"
env_logger = "0.9"
log = "0.4"
lazy_static = "1.4.0"
[dev-dependencies]
doc-comment = "0.3"
[workspace]
members = [
"i18n-build",
"i18n-config",
"i18n-embed",
"i18n-embed-fl",
# Examples
"i18n-embed/examples/library-fluent",
"i18n-embed/examples/bin",
]