Cargo.toml 758 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "tauri-macros"
  3. version = "1.0.0-beta.5"
  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 = "2021"
  11. rust-version = "1.56"
  12. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [lib]
  15. proc-macro = true
  16. [dependencies]
  17. proc-macro2 = "1"
  18. quote = "1"
  19. syn = { version = "1", features = [ "full" ] }
  20. tauri-codegen = { version = "1.0.0-beta.4", default-features = false, path = "../tauri-codegen" }
  21. [features]
  22. custom-protocol = [ ]
  23. compression = [ "tauri-codegen/compression" ]