-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (56 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
75 lines (56 loc) · 1.65 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
[package]
name = "ios-webkit-debug-proxy"
version = "0.1.1"
edition = "2024"
description = "iOS WebKit Debug Proxy - Rust rewrite"
license = "BSD-3-Clause AND MIT"
repository = "https://github.com/wechat-miniprogram/ios-webkit-debug-proxy-rust"
[lib]
name = "ios_webkit_debug_proxy"
path = "src/lib.rs"
[[bin]]
name = "ios_webkit_debug_proxy"
path = "src/main.rs"
[dependencies]
# plist parsing (replaces libplist)
plist = "1"
# UUID generation (replaces custom rpc_new_uuid)
uuid = { version = "1", features = ["v4"] }
# Regex (replaces pcre/regex.h)
regex = "1"
# Command-line argument parsing (replaces getopt)
clap = { version = "4", features = ["derive"] }
# Logging
log = "0.4"
env_logger = "0.11"
# Serialization/Deserialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Byte order handling (usbmuxd/WebInspector protocol)
byteorder = "1"
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
# Async HTTP framework (with WebSocket support)
axum = { version = "0.8", features = ["ws"] }
# Async TLS
tokio-rustls = "0.26"
# HTTP client (for frontend proxy requests)
reqwest = "0.13"
# Async Stream/Sink utilities
futures-util = "0.3"
# URL parsing
url = "2"
# TLS/SSL support
rustls = "0.23"
rustls-pemfile = "2"
rustls-pki-types = "1"
# Platform-specific dependencies
[target.'cfg(not(windows))'.dependencies]
# libimobiledevice bindings - via FFI (Unix: libc for free() etc.)
libc = "0.2"
[target.'cfg(windows)'.dependencies]
# Windows socket support
windows-sys = { version = "0.59", features = ["Win32_Networking_WinSock", "Win32_Foundation", "Win32_System_IO"] }
[build-dependencies]
pkg-config = "0.3"