vcs-camera-satellite/Cargo.toml

29 lines
778 B
TOML
Raw Permalink Normal View History

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]
2024-09-18 12:11:30 -07:00
async-channel = "2.3.1"
bincode = "1.3.3"
2024-08-03 20:36:22 -07:00
config = "0.14.0"
2024-09-18 12:11:30 -07:00
futures-util = "0.3.30"
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"
2024-09-18 12:11:30 -07:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-08-10 12:10:32 -07:00
snafu = "0.8.4"
2024-09-18 12:11:30 -07:00
tokio = { version = "1.40", features = ["signal"] }
tokio-util = "0.7.12"
tokio-tungstenite = "0.24"
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-09-18 12:11:30 -07:00
uuid = "1.10.0"
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" }