-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (43 loc) · 1.12 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
[package]
name = "lingora"
version = "0.1.14"
description = """
Lingora is a free and open-source localization management program that analyses
fluent translation files highlighting discrepancies between reference and target
languages.
"""
authors = ["Nigel Eke <nigeleke@gmail.com>"]
edition = "2021"
repository = "https://github.com/nigeleke/lingora"
homepage = "https://nigeleke.github.io/lingora"
[lib]
name = "lingora"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
fluent4rs = { git = "https://github.com/nigeleke/fluent4rs.git", features = [
"hash",
"walker",
] }
serde = { version = "1.0", features = ["derive"] }
sys-locale = "0.3"
thiserror = "2.0"
toml = "0.8"
unic-langid = { version = "0.9", features = ["serde"] }
walkdir = "2.5"
[dev-dependencies]
fs_extra = "1.3"
insta = { version = "1.42", features = ["filters"] }
pretty_assertions = "1.4"
tempfile = "3.16"
# [features]
# default = ["desktop"]
# desktop = ["dioxus/desktop"]
# [profile]
# [profile.wasm-dev]
# inherits = "dev"
# opt-level = 1
# [profile.server-dev]
# inherits = "dev"
# [profile.android-dev]
# inherits = "dev"