Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "rustdesk_server"
  3. version = "0.1.2"
  4. description = "rustdesk server gui"
  5. authors = ["elilchen"]
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [build-dependencies]
  9. tauri-build = { version = "1.2", features = [] }
  10. winres = "0.1"
  11. [dependencies]
  12. async-std = { version = "1.12", features = ["attributes", "unstable"] }
  13. crossbeam-channel = "0.5"
  14. derive-new = "0.5"
  15. notify = "5.1"
  16. once_cell = "1.17"
  17. serde_json = "1.0"
  18. serde = { version = "1.0", features = ["derive"] }
  19. tauri = { version = "1.2", features = ["fs-exists", "fs-read-dir", "fs-read-file", "fs-write-file", "path-all", "shell-open", "system-tray"] }
  20. windows-service = "0.5.0"
  21. [features]
  22. # by default Tauri runs in production mode
  23. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  24. default = ["custom-protocol"]
  25. # this feature is used used for production builds where `devPath` points to the filesystem
  26. # DO NOT remove this
  27. custom-protocol = ["tauri/custom-protocol"]