Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. static_vcruntime = "2.0"
  10. tauri-build = { version = "1.2", features = [] }
  11. winres = "0.1"
  12. [dependencies]
  13. async-std = { version = "1.12", features = ["attributes", "unstable"] }
  14. crossbeam-channel = "0.5"
  15. derive-new = "0.5"
  16. notify = "5.1"
  17. once_cell = "1.17"
  18. serde_json = "1.0"
  19. serde = { version = "1.0", features = ["derive"] }
  20. tauri = { version = "1.2", features = ["fs-exists", "fs-read-dir", "fs-read-file", "fs-write-file", "path-all", "shell-open", "system-tray"] }
  21. windows-service = "0.5.0"
  22. [features]
  23. # by default Tauri runs in production mode
  24. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  25. default = ["custom-protocol"]
  26. # this feature is used used for production builds where `devPath` points to the filesystem
  27. # DO NOT remove this
  28. custom-protocol = ["tauri/custom-protocol"]