forked from jkcoxson/JitStreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (26 loc) · 882 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 = "jit_streamer"
version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
default-run = "jit_streamer"
[dependencies]
tokio = { version = "*", features = [ "full" ] }
futures = { version = "*" }
warp = { version = "*", features = [ "tls" ] }
bytes = { version = "*" }
reqwest = { version = "*", features = [ "blocking" ] }
ip-in-subnet = { version = "*" }
serde = { version = "*", features = [ "derive" ] }
serde_json = { version = "*" }
toml = { version = "*" }
dirs = { version = "*" }
rand = { version = "*" }
zip = { version = "*" }
log = { version = "*" }
env_logger = { version = "*" }
rusty_libimobiledevice = { version = "*", features = [ "static", "vendored" ] }
plist_plus = { version = "*", features = [ "static", "vendored" ] }
[[bin]]
name = "pair"
path = "src/pair.rs"