forked from CLARATION/Impactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.66 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
[workspace]
resolver = "3"
members = [
"apps/plumeimpactor",
"apps/plumesign",
"crates/core",
"crates/gestalt",
"crates/shared",
"crates/types",
]
[workspace.package]
edition = "2024"
version = "1.4.0"
authors = ["khcrysalis <s03781614@icloud.com>"]
license = "MIT"
repository = "https://github.com/khcrysalis/plumestore"
# We use `opt-level = "s"` as it significantly reduces binary size.
# We could then use the `#[optimize(speed)]` attribute for spot optimizations.
# Unfortunately, that attribute currently doesn't work on intrinsics such as memset.
# [profile.release]
# codegen-units = 1 # reduces binary size by ~2%
# debug = "full" # No one needs an undebuggable release binary
# lto = true # reduces binary size by ~14%
# opt-level = "s" # reduces binary size by ~25%
# panic = "abort" # reduces binary size by ~50% in combination with -Zbuild-std-features=panic_immediate_abort
# split-debuginfo = "packed" # generates a separate *.dwp/*.dSYM so the binary can get stripped
# strip = "symbols" # See split-debuginfo - allows us to drop the size by ~65%
# incremental = true # Improves re-compile times
[workspace.dependencies]
tokio = { version = "1.43", features = ["full"] }
# Application
idevice = { git = "https://github.com/PlumeImpactor/plume-idevice", rev = "5e350a", features = [
"afc",
"installation_proxy",
"debug_proxy",
"rsd",
"tunnel_tcp_stack",
"heartbeat",
"usbmuxd",
"house_arrest",
"pair",
] }
plist = "1.8.0"
# Errors
env_logger = "0.11.8"
log = "0.4.28"
thiserror = "2.0.16"
# Utils
uuid = "1.18.1"
futures = "0.3.31"