-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (44 loc) · 1.15 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
[package]
name = "lingora"
version = "0.1.31"
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 <[email protected]>"]
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"] }
dioxus = { version = "0.6", features = ["desktop"] }
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"