forked from jkcoxson/minimuxer
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
36 lines (27 loc) · 1.05 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
[package]
name = "minimuxer"
version = "0.1.0"
edition = "2021"
[dependencies]
rusty_libimobiledevice = { git = "https://github.com/SideStore/rusty_libimobiledevice", features = ["dynamic"], default-features = false }
plist_plus = { version = "0.2", features = ["dynamic"] }
plist = "1"
swift-bridge = { git = "https://github.com/naturecodevoid/swift-bridge" } # TODO: change to official repo once https://github.com/chinedufn/swift-bridge/pull/209 is merged
log = "*"
fern = "0.6.2"
serde = "1.0"
serde_json = "1.0"
# apple-codesign-wrapper = { git = "https://github.com/SideStore/apple-private-apis" }
# p12 = "0.6"
# der = { version = "0.7", features = ["pem"] }
reqwest = { version = "0.11", features = ["blocking"] }
zip = "0.6"
chrono = "0.4"
[dev-dependencies]
env_logger = "0.10.0"
[build-dependencies]
swift-bridge-build = { git = "https://github.com/naturecodevoid/swift-bridge" } # TODO: change to official repo once https://github.com/chinedufn/swift-bridge/pull/209 is merged
[profile.release]
panic = "abort"
[lib]
crate-type = ["staticlib", "rlib"]