Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "tauri-codegen"
  3. version = "1.0.0-rc.9"
  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. proc-macro2 = "1"
  18. quote = "1"
  19. serde = { version = "1", features = [ "derive" ] }
  20. serde_json = "1"
  21. tauri-utils = { version = "1.0.0-rc.9", path = "../tauri-utils", features = [ "build" ] }
  22. thiserror = "1"
  23. walkdir = "2"
  24. brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
  25. regex = { version = "1.5.6", optional = true }
  26. uuid = { version = "1", features = [ "v4" ] }
  27. semver = "1"
  28. ico = "0.1"
  29. png = "0.17"
  30. [features]
  31. default = [ "compression" ]
  32. compression = [ "brotli", "tauri-utils/compression" ]
  33. isolation = [ "tauri-utils/isolation" ]
  34. shell-scope = [ "regex" ]
  35. config-json5 = [ "tauri-utils/config-json5" ]