2024-08-03 20:36:22 -07:00
|
|
|
[package]
|
|
|
|
name = "vcs-camera-satellite"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
config = "0.14.0"
|
2024-08-13 17:45:40 -07:00
|
|
|
|
2024-08-17 13:10:19 -07:00
|
|
|
gstreamer = { version = "0.23.0", features = ["v1_22"] }
|
|
|
|
gstreamer-app = { version = "0.23.0", features = ["v1_22"] }
|
2024-08-03 20:36:22 -07:00
|
|
|
log = "0.4.22"
|
|
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
|
|
serde_json = "1.0.122"
|
2024-08-10 12:10:32 -07:00
|
|
|
snafu = "0.8.4"
|
2024-08-19 20:40:52 -07:00
|
|
|
tokio = { version = "1.39.2", features = ["signal"] }
|
2024-08-17 13:10:19 -07:00
|
|
|
tokio-tungstenite = "0.23.1"
|
2024-08-10 12:10:32 -07:00
|
|
|
toml = "0.8.19"
|
2024-08-03 20:36:22 -07:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = "0.3.18"
|
2024-08-17 13:10:19 -07:00
|
|
|
webrtc = "0.11.0"
|
2024-08-17 13:10:37 -07:00
|
|
|
|
|
|
|
vcs-common = { git = "https://git.nickiel.net/VCC/vcs-common.git", branch = "main" }
|
2024-08-17 20:30:31 -07:00
|
|
|
async-channel = "2.3.1"
|
2024-09-10 20:58:46 -07:00
|
|
|
futures-util = "0.3.30"
|
|
|
|
bincode = "1.3.3"
|
2024-09-14 21:38:41 -07:00
|
|
|
tokio-util = "0.7.12"
|
|
|
|
uuid = "1.10.0"
|