Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "tauri-codegen"
  3. version = "1.4.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.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.60"
  12. exclude = ["CHANGELOG.md", "/target"]
  13. readme = "README.md"
  14. [dependencies]
  15. sha2 = "0.10"
  16. base64 = "0.21"
  17. proc-macro2 = "1"
  18. quote = "1"
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = "1"
  21. tauri-utils = { version = "1.5.3", path = "../tauri-utils", features = [
  22. "build",
  23. ] }
  24. thiserror = "1"
  25. walkdir = "2"
  26. brotli = { version = "3", optional = true, default-features = false, features = [
  27. "std",
  28. ] }
  29. regex = { version = "1", optional = true }
  30. uuid = { version = "1", features = ["v4"] }
  31. semver = "1"
  32. ico = "0.3"
  33. png = "0.17"
  34. json-patch = "1.2"
  35. [target."cfg(target_os = \"macos\")".dependencies]
  36. plist = "1"
  37. time = { version = "0.3", features = ["parsing", "formatting"] }
  38. [features]
  39. default = ["compression"]
  40. compression = ["brotli", "tauri-utils/compression"]
  41. isolation = ["tauri-utils/isolation"]
  42. shell-scope = ["regex"]
  43. config-json5 = ["tauri-utils/config-json5"]
  44. config-toml = ["tauri-utils/config-toml"]