Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "tauri-macros"
  3. version = "1.4.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.60"
  12. exclude = [ "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [lib]
  15. proc-macro = true
  16. [dependencies]
  17. proc-macro2 = { version = "1", features = [ "span-locations" ] }
  18. quote = "1"
  19. syn = { version = "1", features = [ "full" ] }
  20. heck = "0.5"
  21. tauri-codegen = { version = "1.4.3", default-features = false, path = "../tauri-codegen" }
  22. tauri-utils = { version = "1.5.4", 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" ]
  29. config-toml = [ "tauri-codegen/config-toml", "tauri-utils/config-toml" ]
  30. tracing = [ ]