vcs-controller/Cargo.toml

31 lines
1,014 B
TOML
Raw Normal View History

2024-03-25 16:27:54 -07:00
[package]
name = "joystick-controller-client"
version = "1.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
tracker-state-debug = []
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"] }
gstreamer-video = { version = "0.22.4", 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"] }
log = "0.4.21"
2024-03-25 16:27:54 -07:00
serde = { version = "1.0.197", features = ["derive"] }
2024-04-06 10:49:19 -07:00
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time"] }
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"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }
tracing-appender = "0.2.3"
snafu = "0.8.2"