Cargo.toml 1.9 KB

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