30 lines
1,022 B
TOML
30 lines
1,022 B
TOML
[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 = []
|
|
|
|
[dependencies]
|
|
async-channel = "2.2.0"
|
|
config = "0.14.0"
|
|
futures-core = "0.3.30"
|
|
futures-util = { version = "0.3.30", features = ["tokio-io"] }
|
|
gilrs = "0.10.6"
|
|
gstreamer = { version = "0.22.4", features = ["v1_22"] }
|
|
gstreamer-app = { version = "0.22.0", features = ["v1_22"] }
|
|
gstreamer-video = { version = "0.22.4", features = ["v1_22"] }
|
|
gst-plugin-gtk4 = { version = "0.12.2", features = ["gtk_v4_12"] }
|
|
gtk = { version = "0.8.1", package = "gtk4", features = ["v4_12"] }
|
|
log = "0.4.21"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time", "sync"] }
|
|
tokio-tungstenite = "0.21.0"
|
|
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"
|