-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
75 lines (67 loc) · 2.17 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
authors = ["Luke Frisken <l.frisken@gmail.com>"]
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.13"
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
i18n-embed = { workspace = true, features = ["desktop-requester", "gettext-system", "fluent-system"] }
i18n-build = { workspace = true, features = ["localize"] }
i18n-config = { workspace = true }
anyhow = { workspace = true }
gettext = { workspace = true }
tr = { workspace = true, features = ["gettext"] }
clap = { version = "4.4.5", features = ["cargo"] }
rust-embed = { workspace = true }
unic-langid = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
[dev-dependencies]
doc-comment = { workspace = true }
[workspace]
members = [
"i18n-build",
"i18n-config",
"i18n-embed",
"i18n-embed/i18n-embed-impl",
"i18n-embed-fl",
# Examples
"i18n-embed/examples/library-fluent",
"i18n-embed/examples/desktop-bin",
"i18n-embed-fl/examples/web-server",
]
[workspace.dependencies]
rust-embed = "8.0"
i18n-build = { version = "0.10.0", path = "./i18n-build" }
i18n-embed = { version = "0.15.0", path = "./i18n-embed" }
i18n-embed-impl = { version = "0.8.4", path = "./i18n-embed/i18n-embed-impl" }
i18n-config = { version = "0.4.7", path = "./i18n-config" }
i18n-embed-fl = { version = "0.9.1", path = "./i18n-embed-fl" }
thiserror = "1.0"
log = "0.4"
unic-langid = "0.9"
anyhow = "1.0"
gettext = "0.4"
tr = "0.1"
doc-comment = "0.3"
env_logger = "0.11"
fluent = "0.16"
fluent-syntax = "0.11"
fluent-langneg = "0.13"
proc-macro2 = "1.0"
quote = "1.0"
find-crate = "0.6"
syn = "2.0"
pretty_assertions = "1.4"
walkdir = "2.4"
serde = "1.0"
serde_derive = "1.0"
once_cell = "1.18"