Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. [package]
  2. name = "tauri-utils"
  3. version = "2.0.0-alpha.5"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. license = "Apache-2.0 OR MIT"
  6. homepage = "https://tauri.app"
  7. repository = "https://github.com/tauri-apps/tauri"
  8. description = "Utilities for Tauri"
  9. edition = "2021"
  10. rust-version = "1.65"
  11. exclude = [ "CHANGELOG.md", "/target" ]
  12. readme = "README.md"
  13. [dependencies]
  14. serde = { version = "1", features = [ "derive" ] }
  15. serde_json = "1"
  16. thiserror = "1"
  17. phf = { version = "0.10", features = [ "macros" ] }
  18. brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
  19. url = { version = "2", features = [ "serde" ] }
  20. kuchiki = "0.8"
  21. html5ever = "0.25"
  22. proc-macro2 = { version = "1", optional = true }
  23. quote = { version = "1", optional = true }
  24. schemars = { version = "0.8", features = [ "url" ], optional = true }
  25. serde_with = "2"
  26. aes-gcm = { version = "0.10", optional = true }
  27. getrandom = { version = "0.2", optional = true, features = [ "std" ] }
  28. serialize-to-javascript = { version = "=0.1.1", optional = true }
  29. ctor = "0.1"
  30. json5 = { version = "0.4", optional = true }
  31. toml = { version = "0.5", optional = true }
  32. json-patch = "1.0"
  33. glob = { version = "0.3", optional = true }
  34. walkdir = { version = "2", optional = true }
  35. memchr = "2"
  36. semver = "1"
  37. infer = "0.13"
  38. png = { version = "0.17", optional = true }
  39. ico = { version = "0.2.0", optional = true }
  40. [target."cfg(target_os = \"linux\")".dependencies]
  41. heck = "0.4"
  42. [target."cfg(target_os = \"macos\")".dependencies]
  43. embed_plist = "1.2"
  44. [target."cfg(windows)".dependencies.windows]
  45. version = "0.44.0"
  46. features = [
  47. "implement",
  48. "Win32_Foundation",
  49. "Win32_System_Com",
  50. "Win32_System_LibraryLoader",
  51. "Win32_System_SystemInformation"
  52. ]
  53. [features]
  54. default = ["icon-ico", "icon-png"]
  55. build = [ "proc-macro2", "quote" ]
  56. compression = [ "brotli" ]
  57. schema = [ "schemars" ]
  58. isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
  59. process-relaunch-dangerous-allow-symlink-macos = [ ]
  60. config-json5 = [ "json5" ]
  61. config-toml = [ "toml" ]
  62. resources = [ "glob", "walkdir" ]
  63. icon-ico = [ "ico" ]
  64. icon-png = [ "png" ]