mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
## Description **What issue are you solving (or what feature are you adding) and how are you doing it?** We cannot use golang for our input binary as we will be redoing the Webtransport stack, plus we will have to use CGO in-order to hook into X11. Like what [neko](https://github.com/m1k1o/neko) does. However, we could go down the Rust route, where X11 mouse/keyboard drivers are in pretty, and moq-rs (the MoQ library using Webtransport) works really well. So, that is what am trying to do here; implement input using rust.
20 lines
486 B
TOML
20 lines
486 B
TOML
[package]
|
|
name = "warp-input"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.82"
|
|
clap = "4.5.4"
|
|
enigo = "0.2.1"
|
|
env_logger = "0.11.3"
|
|
log = "0.4.21"
|
|
moq-native = { git = "https://github.com/kixelated/moq-rs", version = "0.1.0" }
|
|
moq-transport = { git = "https://github.com/kixelated/moq-rs", version = "0.5.0" }
|
|
serde = { version="1.0.202" , features = ["derive"]}
|
|
serde_json = "1.0.117"
|
|
tokio = "1.37.0"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
url = "2.5.0"
|