diff options
author | elilchen <[email protected]> | 2023-02-12 00:48:38 +0800 |
---|---|---|
committer | elilchen <[email protected]> | 2023-02-12 00:48:38 +0800 |
commit | 7a0e300ff9d5190a31b49155df51dde5c0db2a29 (patch) | |
tree | 064916b7e8c0eb78f012cbcfbfa61567ebc32ada /ui/Cargo.toml | |
parent | b2f381913df6583f215e50faa28dc5e1333d40e6 (diff) | |
download | rustdesk-server-7a0e300ff9d5190a31b49155df51dde5c0db2a29.tar.gz rustdesk-server-7a0e300ff9d5190a31b49155df51dde5c0db2a29.zip |
UI
Diffstat (limited to 'ui/Cargo.toml')
-rw-r--r-- | ui/Cargo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ui/Cargo.toml b/ui/Cargo.toml new file mode 100644 index 0000000..9cd47ac --- /dev/null +++ b/ui/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "rustdesk_server" +version = "0.1.1" +description = "rustdesk server gui" +authors = ["elilchen"] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[build-dependencies] +tauri-build = { version = "1.2", features = [] } +winres = "0.1" + +[dependencies] +async-std = { version = "1.12", features = ["attributes", "unstable"] } +crossbeam-channel = "0.5" +derive-new = "0.5" +notify = "5.1" +once_cell = "1.17" +serde_json = "1.0" +serde = { version = "1.0", features = ["derive"] } +tauri = { version = "1.2", features = ["fs-exists", "fs-read-dir", "fs-read-file", "fs-write-file", "path-all", "shell-open", "system-tray"] } +windows-service = "0.5.0" + +[features] +# by default Tauri runs in production mode +# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL +default = ["custom-protocol"] +# this feature is used used for production builds where `devPath` points to the filesystem +# DO NOT remove this +custom-protocol = ["tauri/custom-protocol"] |