-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
87 lines (83 loc) · 2.08 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
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = ["cli", "core", "gui/src-tauri", "reapack"]
[workspace.package]
version = "1.1.2"
description = "ReaBoot"
edition = "2021"
authors = ["Benjamin Klum <[email protected]>"]
[workspace.dependencies]
reaboot-core = { path = "core" }
reaboot-reapack = { path = "reapack" }
serde = "1"
serde_json = "1"
tokio = "1"
ts-rs = "10.1.0"
reqwest = "0.12.9"
reqwest-middleware = "0.4.0"
reqwest-retry = "0.7.0"
anyhow = "1.0.81"
futures = "0.3.30"
tempdir = "0.3.7"
serde-xml-rs = "0.6.0"
time = "0.3.34"
thiserror = "2.0.3"
regex = "1.10.3"
tinyvec = "1.6.0"
ormlite = "0.22.2"
sqlx = "0.8.2"
dirs = "5.0.1"
tracing = "0.1.40"
fs_extra = "1.3.0"
jiff = "0.1.15"
atomic = "0.6.0"
bytemuck = "1.15.0"
url = "2.5.0"
num_enum = "0.7.2"
encoding_rs = "0.8.34"
enumset = "1.1.3"
clap = "4.3.11"
indicatif = "0.17.8"
serde_plain = "1.0.2"
strum = "0.26.2"
console = "0.15.8"
dmg = "0.1.2"
dmgwiz = "1.0.0"
ref-cast = "1.0.22"
rust-ini = "0.21.0"
camino = "1.1.6"
indexmap = "2.2.6"
tracing-subscriber = "0.3.18"
dialoguer = "0.11.0"
multihash = "0.19.1"
multihash-codetable = "0.1.2"
hex = "0.4.3"
sha2 = "0.10.8"
termimad = "0.31.1"
markdown = "1.0.0-alpha.16"
schemars = "0.8.16"
dunce = "1.0.4"
windows = "0.58.0"
test-log = "0.2.16"
similar-asserts = "1.6.0"
axum = "0.7.9"
axum-server = "0.7.1"
tower-http = "0.6.2"
tauri = "2.1.1"
tauri-plugin-log = "2.0.3"
tauri-plugin-process = "2"
tauri-plugin-shell = "2"
tauri-plugin-clipboard-manager = "2.0.2"
tauri-plugin-dialog = "2"
tauri-plugin-os = "2.0.1"
[profile.release]
# Those are the settings recommended on https://tauri.app/v1/guides/building/app-size/.
# At least on macOS, they have quite a high impact on binary size.
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
[profile.dev.package.objc2]
# This fixes running in dev mode on macOS 10.15. See https://github.com/tauri-apps/tauri/issues/11501.
debug-assertions = false