Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "tauri-codegen"
  3. version = "2.0.0-alpha.1"
  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.64"
  12. exclude = [ "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 = "2.0.0-alpha.1", 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.7.0", optional = true }
  26. uuid = { version = "1", features = [ "v4" ] }
  27. semver = "1"
  28. ico = "0.2"
  29. png = "0.17"
  30. json-patch = "0.2"
  31. url = "2"
  32. [target."cfg(target_os = \"macos\")".dependencies]
  33. plist = "1"
  34. time = { version = "0.3", features = [ "parsing", "formatting" ] }
  35. [features]
  36. default = [ "compression" ]
  37. compression = [ "brotli", "tauri-utils/compression" ]
  38. isolation = [ "tauri-utils/isolation" ]
  39. shell-scope = [ "regex" ]
  40. config-json5 = [ "tauri-utils/config-json5" ]
  41. config-toml = [ "tauri-utils/config-toml" ]