Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "tauri-codegen"
  3. version = "1.0.3"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. categories = [ "gui", "web-programming" ]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.app"
  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.3", 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.6.0", optional = true }
  26. uuid = { version = "1", features = [ "v4" ] }
  27. semver = "1"
  28. ico = "0.1"
  29. png = "0.17"
  30. json-patch = "0.2"
  31. [target."cfg(target_os = \"macos\")".dependencies]
  32. plist = "1"
  33. time = { version = "0.3", features = [ "parsing", "formatting" ] }
  34. [features]
  35. default = [ "compression" ]
  36. compression = [ "brotli", "tauri-utils/compression" ]
  37. isolation = [ "tauri-utils/isolation" ]
  38. shell-scope = [ "regex" ]
  39. config-json5 = [ "tauri-utils/config-json5" ]