Cargo.toml 979 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "tauri-macros"
  3. version = "1.0.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.app"
  8. repository = "https://github.com/tauri-apps/tauri"
  9. description = "Macros for the tauri crate."
  10. edition = "2021"
  11. rust-version = "1.57"
  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. heck = "0.4"
  21. tauri-codegen = { version = "1.0.4", default-features = false, path = "../tauri-codegen" }
  22. tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
  23. [features]
  24. custom-protocol = [ ]
  25. compression = [ "tauri-codegen/compression" ]
  26. isolation = [ "tauri-codegen/isolation" ]
  27. shell-scope = [ "tauri-codegen/shell-scope" ]
  28. config-json5 = [ "tauri-codegen/config-json5", "tauri-utils/config-json5" ]