initialize cursor-mover-app

This commit is contained in:
Mona Mayrhofer 2026-02-28 11:35:52 +01:00
parent e8c6549858
commit a12b10b4bc
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 374AB152BDEBA1AE
6 changed files with 180 additions and 28 deletions

View file

@ -0,0 +1,16 @@
[package]
name = "cursor-mover-app"
version = "0.1.0"
edition = "2024"
license = "EUPL-1.2"
description = "A web-application that lets you remotely control your cursor."
repository = "https://forgejo.monalith.xyz/Nionidh/cursor-mover-app"
keywords = ["web", "application", "cursor", "control"]
categories = ["web-programming"]
readme = "README.md"
[dependencies]
wayland-client = "0.31.12"
[lints]
workspace = true

View file

@ -0,0 +1 @@
The main application

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}