Cargo.toml 959 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "tauri-macros"
  3. version = "2.0.0-rc.10"
  4. description = "Macros for the tauri crate."
  5. exclude = ["CHANGELOG.md", "/target"]
  6. readme = "README.md"
  7. authors.workspace = true
  8. homepage.workspace = true
  9. repository.workspace = true
  10. categories.workspace = true
  11. license.workspace = true
  12. edition.workspace = true
  13. rust-version.workspace = true
  14. [lib]
  15. proc-macro = true
  16. [dependencies]
  17. proc-macro2 = { version = "1", features = ["span-locations"] }
  18. quote = "1"
  19. syn = { version = "2", features = ["full"] }
  20. heck = "0.5"
  21. tauri-codegen = { version = "2.0.0-rc.11", default-features = false, path = "../tauri-codegen" }
  22. tauri-utils = { version = "2.0.0-rc.11", path = "../tauri-utils" }
  23. [features]
  24. custom-protocol = []
  25. compression = ["tauri-codegen/compression"]
  26. isolation = ["tauri-codegen/isolation"]
  27. config-json5 = ["tauri-codegen/config-json5", "tauri-utils/config-json5"]
  28. config-toml = ["tauri-codegen/config-toml", "tauri-utils/config-toml"]
  29. tracing = []