Cargo.toml 914 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "tauri-utils"
  3. version = "1.0.0-beta.3"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. license = "Apache-2.0 OR MIT"
  6. homepage = "https://tauri.studio"
  7. repository = "https://github.com/tauri-apps/tauri"
  8. description = "Utilities for Tauri"
  9. edition = "2021"
  10. rust-version = "1.56"
  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. zstd = { version = "0.9", optional = true }
  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. [target."cfg(target_os = \"linux\")".dependencies]
  25. heck = "0.4"
  26. [features]
  27. build = [ "proc-macro2", "quote" ]
  28. compression = [ "zstd" ]