Cargo.toml 664 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "tauri-macros"
  3. version = "1.0.0-beta.4"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. categories = [ "gui", "os", "filesystem", "web-programming" ]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.studio"
  8. repository = "https://github.com/tauri-apps/tauri"
  9. description = "Macros for the tauri crate."
  10. edition = "2018"
  11. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  12. readme = "README.md"
  13. [lib]
  14. proc-macro = true
  15. [dependencies]
  16. proc-macro2 = "1"
  17. quote = "1"
  18. syn = { version = "1", features = [ "full" ] }
  19. tauri-codegen = { version = "1.0.0-beta.3", path = "../tauri-codegen" }
  20. [features]
  21. custom-protocol = [ ]