Cargo.toml 754 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "test"
  3. version = "0.1.0"
  4. description = "A Tauri App"
  5. authors = ["Caner"]
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [lib]
  9. # The `_lib` suffix may seem redundant but it is necessary
  10. # to make the lib name unique and wouldn't conflict with the bin name.
  11. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
  12. name = "test_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = { version = "2", features = [] }
  16. [dependencies]
  17. tauri = { version = "2", features = ["macos-private-api"] }
  18. serde = { version = "1", features = ["derive"] }
  19. serde_json = "1"
  20. tauri-plugin-mqtt = "0.1.0"
  21. url = "2.5.2"