-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
37 lines (27 loc) · 816 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
[package]
name = "netmuxd"
version = "0.2.1"
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"
[[bin]]
name = "add_device"
path = "src/add_device.rs"
[dependencies]
tokio = { version = "1.17.0", features = ["full"] }
futures-util = { version = "0.3.21" }
zeroconf = { git = "https://github.com/zeyugao/zeroconf-rs", optional = true }
mdns = "3.0.0"
idevice = "0.1.7"
plist = "1.7"
log = { version = "0.4.16" }
env_logger = { version = "0.11" }
colored = { version = "2.0.0" }
uuid = { version = "1.11", features = ["v4"] }
rusb = { version = "0.9.1", optional = true }
libusb1-sys = { version = "0.7", optional = true }
[features]
usb = ["libusb1-sys", "rusb"]