forked from jkcoxson/netmuxd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (26 loc) · 875 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
[package]
name = "netmuxd"
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
default-run = "netmuxd"
[[bin]]
name = "passthrough"
path = "src/passthrough.rs"
[dependencies]
tokio = { version = "1.17.0", features = ["full"] }
futures-util = { version = "0.3.21" }
zeroconf = { version = "0.15", optional = true }
mdns = "3.0.0"
rusty_libimobiledevice = "0.1.8"
plist_plus = "0.2.3"
log = { version = "0.4.16" }
env_logger = { version = "0.7.1" }
colored = { version = "2.0.0" }
rusb = { version = "0.9.3", optional = true }
libusb1-sys = { version = "0.6.5", optional = true }
[features]
default = ["static", "vendored"]
static = ["rusty_libimobiledevice/static", "plist_plus/static"]
usb = ["libusb1-sys", "rusb"]
vendored = ["rusty_libimobiledevice/vendored", "plist_plus/vendored"]