-
Notifications
You must be signed in to change notification settings - Fork 151
/
Cargo.toml
42 lines (40 loc) · 913 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
[package]
name = "neolink"
description = "A standards-compliant bridge to Reolink IP cameras"
version = "0.4.0"
authors = ["George Hilliard <[email protected]>"]
edition = "2018"
[workspace]
members = [
"crates/*",
]
[dependencies]
neolink_core = { path = "crates/core", version = "0.4.0" }
aes = "0.6"
cfb-mode = "0.6"
cookie-factory = "0.3"
crossbeam = "0.8"
err-derive = "0.2"
env_logger = "*"
gstreamer = "0.17"
gstreamer-app = "0.17"
gstreamer-rtsp = "0.17"
gstreamer-rtsp-server = { version = "0.17", features = ["v1_12", "v1_14"]}
lazy_static = "1.4"
log = { version = "0.4" }
itertools = "0.9"
md5 = "0.7"
nom = "6.1.2"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
socket2 = "0.3"
structopt = "0.3"
time = "0.2"
toml = "0.5"
yaserde = "0.3.16"
yaserde_derive = "0.3.16"
xml-rs = "0.8"
validator = "0.10"
validator_derive = "0.10"
byte-slice-cast = "1.0.0"
anyhow = "1.0.42"