Cargo.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [package]
  2. name = "tauri-utils"
  3. version = "1.2.1"
  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.59"
  11. exclude = [ "CHANGELOG.md", "/target" ]
  12. readme = "README.md"
  13. [dependencies]
  14. serde = { version = "1.0", features = [ "derive" ] }
  15. serde_json = "1.0"
  16. thiserror = "1.0.30"
  17. phf = { version = "0.10", features = [ "macros" ] }
  18. brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
  19. url = { version = "2.2", features = [ "serde" ] }
  20. kuchiki = "0.8"
  21. html5ever = "0.25"
  22. proc-macro2 = { version = "1.0", optional = true }
  23. quote = { version = "1.0", optional = true }
  24. schemars = { version = "0.8", features = [ "url" ], optional = true }
  25. serde_with = "1.12"
  26. aes-gcm = { version = "0.9", 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 = "0.2"
  33. glob = { version = "0.3.0", optional = true }
  34. walkdir = { version = "2", optional = true }
  35. memchr = "2.4"
  36. semver = "1"
  37. infer = "0.7"
  38. [target."cfg(target_os = \"linux\")".dependencies]
  39. heck = "0.4"
  40. [target."cfg(windows)".dependencies.windows]
  41. version = "0.39.0"
  42. features = [
  43. "implement",
  44. "Win32_Foundation",
  45. "Win32_System_Com",
  46. "Win32_System_LibraryLoader",
  47. "Win32_System_SystemInformation"
  48. ]
  49. [features]
  50. build = [ "proc-macro2", "quote" ]
  51. compression = [ "brotli" ]
  52. schema = [ "schemars" ]
  53. isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
  54. process-relaunch-dangerous-allow-symlink-macos = [ ]
  55. config-json5 = [ "json5" ]
  56. config-toml = [ "toml" ]
  57. resources = [ "glob", "walkdir" ]