2024-03-25 16:27:54 -07:00
|
|
|
[package]
|
2024-07-21 16:27:34 -07:00
|
|
|
name = "vcs-controller"
|
2024-06-01 08:41:01 -07:00
|
|
|
version = "2.0.0"
|
2024-03-25 16:27:54 -07:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-05-04 18:00:40 -07:00
|
|
|
[features]
|
|
|
|
tracker-state-debug = []
|
2024-07-04 09:03:17 -07:00
|
|
|
tokio-logging = []
|
2024-05-04 18:00:40 -07:00
|
|
|
|
2024-03-25 16:27:54 -07:00
|
|
|
[dependencies]
|
|
|
|
async-channel = "2.2.0"
|
|
|
|
config = "0.14.0"
|
2024-04-05 20:58:29 -07:00
|
|
|
futures-core = "0.3.30"
|
|
|
|
futures-util = { version = "0.3.30", features = ["tokio-io"] }
|
2024-03-25 16:27:54 -07:00
|
|
|
gilrs = "0.10.6"
|
2024-04-20 20:19:01 -07:00
|
|
|
gstreamer = { version = "0.22.4", features = ["v1_22"] }
|
2024-04-27 19:33:18 -07:00
|
|
|
gstreamer-app = { version = "0.22.0", features = ["v1_22"] }
|
2024-04-20 20:19:01 -07:00
|
|
|
gst-plugin-gtk4 = { version = "0.12.2", features = ["gtk_v4_12"] }
|
2024-03-25 16:27:54 -07:00
|
|
|
gtk = { version = "0.8.1", package = "gtk4", features = ["v4_12"] }
|
2024-03-26 19:08:07 -07:00
|
|
|
log = "0.4.21"
|
2024-03-25 16:27:54 -07:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-05-21 13:36:08 -07:00
|
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time", "sync"] }
|
2024-04-05 20:58:29 -07:00
|
|
|
tokio-tungstenite = "0.21.0"
|
2024-03-25 16:27:54 -07:00
|
|
|
toml = "0.8.12"
|
2024-05-20 21:12:15 -07:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }
|
|
|
|
tracing-appender = "0.2.3"
|
|
|
|
snafu = "0.8.2"
|
2024-07-02 20:19:00 -07:00
|
|
|
console-subscriber = "0.3.0"
|
|
|
|
async-recursion = "1.1.1"
|