chore(release): prepare iron-remote-desktop (#766)

This commit is contained in:
Benoît Cortier
2025-04-22 09:30:34 +03:00
committed by GitHub
parent 8961b40012
commit 1ff4bfc62c
3 changed files with 11 additions and 0 deletions
+2
View File
@@ -1,6 +1,8 @@
[package]
name = "iron-remote-desktop"
version = "0.1.0"
readme = "README.md"
description = "Helper crate for building WASM modules compatible with iron-remote-desktop WebComponent"
edition.workspace = true
license.workspace = true
homepage.workspace = true
+6
View File
@@ -0,0 +1,6 @@
# Iron Remote Desktop — Helper Crate
Helper crate for building WASM modules compatible with the `iron-remote-desktop` WebComponent.
Implement the `RemoteDesktopApi` on a Rust type, and call the `make_bridge!` on
it to generate the WASM API that is expected by `iron-remote-desktop`.
+3
View File
@@ -1,3 +1,6 @@
#![doc = include_str!("../README.md")]
#![doc(html_logo_url = "https://cdnweb.devolutions.net/images/projects/devolutions/logos/devolutions-icon-shadow.svg")]
mod clipboard;
mod cursor;
mod desktop_size;