Cargo.toml 743 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "tidy-magpie"
  3. version = "0.1.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  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 = "tidy_magpie_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = { version = "2.0.0", features = [] }
  16. [dependencies]
  17. tauri = { version = "2.0.0", features = [] }
  18. tauri-plugin-shell = "2.0.0"
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = "1"