Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "tauri-codegen"
  3. version = "1.0.0-rc.2"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. categories = [ "gui", "web-programming" ]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.studio"
  8. repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
  9. description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
  10. edition = "2021"
  11. rust-version = "1.57"
  12. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [dependencies]
  15. sha2 = "0.10"
  16. base64 = "0.13"
  17. blake3 = { version = "1.3", features = [ "rayon" ] }
  18. proc-macro2 = "1"
  19. quote = "1"
  20. serde = { version = "1", features = [ "derive" ] }
  21. serde_json = "1"
  22. tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils", features = [ "build" ] }
  23. thiserror = "1"
  24. walkdir = "2"
  25. zstd = { version = "0.10", optional = true }
  26. regex = { version = "1", optional = true }
  27. uuid = { version = "0.8", features = [ "v4" ] }
  28. [target."cfg(windows)".dependencies]
  29. ico = "0.1"
  30. [target."cfg(not(windows))".dependencies]
  31. png = "0.16"
  32. [features]
  33. default = [ "compression" ]
  34. compression = [ "zstd", "tauri-utils/compression" ]
  35. isolation = [ "tauri-utils/isolation" ]
  36. __isolation-docs = [ "tauri-utils/__isolation-docs" ]
  37. shell-scope = [ "regex" ]
  38. config-json5 = [ "tauri-utils/config-json5" ]