Cargo.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "tauri-utils"
  3. version = "1.5.4"
  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.60"
  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.11", features = [ "macros" ] }
  18. brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
  19. url = { version = "2", features = [ "serde" ] }
  20. html5ever = "0.26"
  21. kuchiki = { package = "kuchikiki", version = "0.8" }
  22. proc-macro2 = { version = "1", optional = true }
  23. quote = { version = "1", optional = true }
  24. schemars = { version = "0.8.18", features = [ "url" ], optional = true }
  25. serde_with = "3"
  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.2"
  30. json5 = { version = "0.4", optional = true }
  31. toml = { version = "0.7", optional = true }
  32. json-patch = "1.2"
  33. glob = { version = "0.3", optional = true }
  34. walkdir = { version = "2", optional = true }
  35. memchr = "2"
  36. semver = "1"
  37. infer = "0.13"
  38. dunce = "1"
  39. log = "0.4.20"
  40. [target."cfg(target_os = \"linux\")".dependencies]
  41. heck = "0.5"
  42. [target."cfg(windows)".dependencies]
  43. windows-version = "0.1"
  44. [features]
  45. build = [ "proc-macro2", "quote" ]
  46. compression = [ "brotli" ]
  47. schema = [ "schemars" ]
  48. isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
  49. process-relaunch-dangerous-allow-symlink-macos = [ ]
  50. config-json5 = [ "json5" ]
  51. config-toml = [ "toml" ]
  52. resources = [ "glob", "walkdir" ]