-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 915 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
[package]
name = "gstreamer-iotedge-rs"
version = "0.4.0"
authors = ["krishndu"]
edition = "2021"
description = "Azure IOT Edge module to run a gStreamer pipeline"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log="0.4.18"
tokio= { version = "1.28.2", features = ["full"] }
futures = "0.3.28"
serde = "1.0.163"
serde_json = "1.0.96"
serde_derive = "1.0.163"
env_logger = "0.10.0"
config = "0.13.0"
azure-iot-rs = "0.4.0"
warp = "0.3.5"
failure = "0.1.8"
once_cell = "1.8.0"
shellexpand = "3.1.0"
anyhow = "1.0.71"
ctrlc = "3.4.0"
gstreamer = { version = "0.20.0", features = ["v1_20"] }
gstreamer-sdp = { version = "0.20.0", features = ["v1_20"] }
gstreamer-rtsp = { version = "0.20.0", features = ["v1_20"] }
gstreamer-rtsp-server = { version = "0.20.0", features = ["v1_20"] }
gstreamer-webrtc = { version = "0.20.0", features = ["v1_20"] }