-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (90 loc) · 2.35 KB
/
Copy pathCargo.toml
File metadata and controls
98 lines (90 loc) · 2.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workspace]
resolver = "2"
members = [
"crates/icy_board_engine",
"crates/jamjam",
"crates/dizbase",
"crates/codepages",
"crates/pplc",
"crates/ppld",
"crates/ppl-lsp",
# "crates/scandb",
"crates/codepages",
"crates/icy_board_tui",
"crates/mkicbmnu",
"crates/icy_net",
"crates/mkicbtxt",
"crates/icboard",
"crates/icbsetup",
"crates/icbmailer",
"crates/icbsysmgr",
]
[workspace.package]
version = "0.1.7"
edition = "2024"
authors = ["Mike Krüger <mkrueger@posteo.de>"]
[workspace.dependencies]
codepages = { path = "crates/codepages" }
dizbase = { path = "crates/dizbase" }
jamjam = { path = "crates/jamjam" }
icy_board_tui = { path = "crates/icy_board_tui" }
icy_net = { path = "crates/icy_net" }
icy_board_engine = { path = "crates/icy_board_engine" }
icy_engine = { git = "https://github.com/mkrueger/icy_tools" }
icy_parser_core = { git = "https://github.com/mkrueger/icy_tools" }
lazy_static = "1.5.0"
semver = { version = "1.0.23", features = ["serde"] }
thiserror = "2.0.17"
argh = "0.1.12"
crossterm = "0.29.0"
ratatui = "0.30.0"
log = "0.4.25"
chrono = { version = "0.4.37", features = ["serde"] }
bstr = "1.10.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.43.0", features = ["full"] }
rayon = "1.10.0"
regex = "1.11.3"
bitflag = "0.10.1"
async-trait = "0.1.89"
async-recursion = "1.1.1"
rand = "0.10.0"
zip = "8.4.0"
walkdir = "2.2.6"
i18n-embed = { version = "0.16.0", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.10.0"
fluent-bundle = "0.16.0"
rust-embed = "8.5.0"
once_cell = "1.20.2"
unicase = "2.7.0"
toml = "1.1.0"
fastrand = "2"
color-eyre = "0.6.2"
tempfile = "3.23.0"
substring = "1.4.5"
strum = "0.28.0"
strum_macros = "0.28.0"
itertools = "0.14.0"
fern = "0.7.0"
ariadne = "0.6.0"
relative-path = "2.0.1"
bitflags = "2.10.0"
tui-textarea = "0.7.0"
tui-markdown = "0.3"
tui-input = "0.14.0"
# tui-markdown = { git = "https://github.com/joshka/tui-markdown" }
russh = "0.60.0"
internal-russh-forked-ssh-key = "0.6"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
[profile.dev]
opt-level = 3
[patch."https://github.com/mkrueger/icy_board"]
icy_net = { path = "crates/icy_net" }