Cargo.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. [package]
  2. name = "tauri-utils"
  3. version = "1.0.3"
  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.57"
  11. exclude = [ ".license_template", "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. json-patch = "0.2"
  32. glob = { version = "0.3.0", optional = true }
  33. walkdir = { version = "2", optional = true }
  34. memchr = "2.4"
  35. semver = "1"
  36. [target."cfg(target_os = \"linux\")".dependencies]
  37. heck = "0.4"
  38. [target."cfg(windows)".dependencies.windows]
  39. version = "0.37.0"
  40. features = [
  41. "alloc",
  42. "implement",
  43. "Win32_Foundation",
  44. "Win32_System_Com",
  45. "Win32_System_LibraryLoader",
  46. "Win32_System_SystemInformation"
  47. ]
  48. [features]
  49. build = [ "proc-macro2", "quote" ]
  50. compression = [ "brotli" ]
  51. schema = [ "schemars" ]
  52. isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
  53. process-relaunch-dangerous-allow-symlink-macos = [ ]
  54. config-json5 = [ "json5" ]
  55. resources = [ "glob", "walkdir" ]