-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
48 lines (38 loc) · 900 Bytes
/
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
[package]
name = "examples"
version = "0.0.0"
publish = false
edition = "2018"
[dependencies]
rusty_libimobiledevice = { version = "*", path = "../", features = [ "static", "vendored" ] }
plist_plus = { version = "*", features = [ "static", "vendored" ] }
env_logger = { version = "*" }
zip = { version = "*" }
regex = { version = "*" }
[[bin]]
name = "idevice_id"
path = "src/idevice_id.rs"
[[bin]]
name = "idevicescreenshot"
path = "src/idevicescreenshot.rs"
[[bin]]
name = "ideviceimagemounter"
path = "src/ideviceimagemounter.rs"
[[bin]]
name = "ideviceinfo"
path = "src/ideviceinfo.rs"
[[bin]]
name = "idevicedebug"
path = "src/idevicedebug.rs"
[[bin]]
name = "idevicelistapps"
path = "src/idevicelistapps.rs"
[[bin]]
name = "ideviceinstaller"
path = "src/ideviceinstaller.rs"
[[bin]]
name = "test"
path = "src/test.rs"
[[bin]]
name = "idevicelocation"
path = "src/idevicelocation.rs"