-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (65 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
74 lines (65 loc) · 1.72 KB
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
[package]
name = "sush"
version = "1.2.6"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.compat]
target_bash_version = "5.2.37" # Ubuntu 25.04
[dependencies]
nix = { version = "0.30.1", features = ["fs", "process", "signal", "term", "user", "time", "hostname", "resource"]}
termion = "4.0.5"
unicode-width = "0.1.11"
signal-hook = "0.3.17"
rev_lines = "0.3.0"
faccess = "0.2.4"
io-streams = "0.16.3"
regex = "1.11.1"
rand = "0.9"
rand_chacha = { version = "0.9.0", features = [ "os_rng" ]}
time = "0.3"
sprintf = "0.4"
libc = "0.2.178"
# Internationalization
fluent-bundle = "0.16"
unic-langid = "0.9"
once_cell = "1"
locale_config = "0.3"
# Compile-time feature
[features]
lang_ar = []
lang_da = []
lang_de = []
lang_el = []
lang_en = []
lang_es = []
lang_fi = []
lang_fr = []
lang_hi = []
lang_it = []
lang_ja = []
lang_ko = []
lang_nl = []
lang_no = []
lang_pl = []
lang_pt = []
lang_ru = []
lang_sl = []
lang_sv = []
lang_sw = []
lang_uk = []
lang_zh = []
default = ["0", "1", "2", "3", "4", "5", "6"] # All
0 = ["lang_en", "lang_fr", "lang_ja"] # Dev Pack
1 = ["0", "lang_es", "lang_fr", "lang_it", "lang_pt"] # Latin
2 = ["0", "lang_nl", "lang_de", "lang_sl", "lang_el"] # Central Europe
3 = ["0", "lang_da", "lang_fi", "lang_no", "lang_sv"] # Northern Europe
4 = ["0", "lang_ru", "lang_uk", "lang_pl"] # Eastern Europe
5 = ["0", "lang_hi", "lang_ja", "lang_ko", "lang_zh"] # Asia
6 = ["0", "lang_ar", "lang_sw"] # Africa / Middle East
[build-dependencies]
cargo_toml = "0.22"
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
panic = "abort"