Cargo.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [package]
  2. name = "tauri-utils"
  3. version = "2.0.0-beta.17"
  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.11", features = [ "macros" ] }
  19. brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
  20. url = { version = "2", features = [ "serde" ] }
  21. html5ever = "0.26"
  22. kuchiki = { package = "kuchikiki", version = "0.8" }
  23. proc-macro2 = { version = "1", optional = true }
  24. quote = { version = "1", optional = true }
  25. schemars = { version = "0.8.18", 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.2"
  31. json5 = { version = "0.4", optional = true }
  32. toml = { version = "0.8", features = [ "parse" ] }
  33. json-patch = "1.2"
  34. glob = "0.3"
  35. urlpattern = "0.2"
  36. regex = "1"
  37. walkdir = { version = "2", optional = true }
  38. memchr = "2"
  39. semver = "1"
  40. infer = "0.15"
  41. dunce = "1"
  42. log = "0.4.21"
  43. cargo_metadata = { version = "0.18", optional = true }
  44. [target."cfg(target_os = \"macos\")".dependencies]
  45. swift-rs = { version = "1.0.6", optional = true, features = [ "build" ] }
  46. [features]
  47. build = [
  48. "proc-macro2",
  49. "quote",
  50. "cargo_metadata",
  51. "schema",
  52. "swift-rs"
  53. ]
  54. compression = [ "brotli" ]
  55. schema = [ "schemars" ]
  56. isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
  57. process-relaunch-dangerous-allow-symlink-macos = [ ]
  58. config-json5 = [ "json5" ]
  59. config-toml = [ ]
  60. resources = [ "walkdir" ]