2026-02-28 22:24:42 +01:00
[ package ]
2026-03-07 18:56:41 +01:00
name = "cursor-mover-webapp"
2026-02-28 22:24:42 +01:00
version = "0.1.0"
authors = [ "Mona Mayrhofer <mona.mayrhofer@proton.me>" ]
edition = "2024"
2026-03-03 18:08:02 +01:00
repository = "https://github.com/mona-mayrhofer/cursor-mover-app"
categories = [ "tools" ]
keywords = [ "tools" , "cursor" , "remote" ]
license = "EUPL-1.2"
description = "A web application for controlling your cursor and keyboard via a smartphone browser."
2026-02-28 22:24:42 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ dependencies ]
dioxus = { version = "0.7.3" , features = [ "router" , "fullstack" , "logger" ] }
2026-03-03 17:46:51 +01:00
dioxus-html = { version = "0.7.3" , features = [ "serialize" ] }
2026-02-28 22:24:42 +01:00
serde = { version = "1.0.228" , features = [ "derive" ] }
2026-03-03 18:08:02 +01:00
wasmtimer = "0.4.3"
2026-02-28 22:24:42 +01:00
wayland-client = { version = "0.31.12" , optional = true }
wayland-protocols-wlr = { version = "0.3.10" , features = [ "client" ] , optional = true }
tokio = { version = "1.49.0" , optional = true }
2026-03-03 18:08:02 +01:00
rustix = { version = "1.1.4" , optional = true , features = [ "time" ] , default-features = false }
2026-03-02 22:06:15 +01:00
wayland-protocols-misc = { version = "0.3.10" , features = [ "client" ] , optional = true }
wayland-protocols = { version = "0.32.10" , features = [ "client" , "staging" ] , optional = true }
memfile = { version = "0.3.2" , optional = true }
2026-02-28 22:24:42 +01:00
[ features ]
default = [ "web" ]
# The feature that are only required for the web = ["dioxus/web"] build target should be optional and only enabled in the web = ["dioxus/web"] feature
web = [ "dioxus/web" ]
# The feature that are only required for the desktop = ["dioxus/desktop"] build target should be optional and only enabled in the desktop = ["dioxus/desktop"] feature
2026-03-03 18:08:02 +01:00
#desktop = ["dioxus/desktop"]
2026-02-28 22:24:42 +01:00
# The feature that are only required for the mobile = ["dioxus/mobile"] build target should be optional and only enabled in the mobile = ["dioxus/mobile"] feature
2026-03-03 18:08:02 +01:00
#mobile = ["dioxus/mobile"]
2026-02-28 22:24:42 +01:00
# The feature that are only required for the server = ["dioxus/server"] build target should be optional and only enabled in the server = ["dioxus/server"] feature
2026-03-02 22:06:15 +01:00
server = [ "dioxus/server" ,
"dep:wayland-client" ,
"dep:wayland-protocols-wlr" ,
"dep:wayland-protocols-misc" ,
"dep:wayland-protocols" ,
"dep:tokio" ,
"dep:rustix" ,
"dep:memfile"
]
2026-02-28 22:24:42 +01:00
[ lints ]
workspace = true