Cargo.toml 835 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "tauri-utils"
  3. version = "1.0.0-beta.2"
  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 = "2018"
  10. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  11. readme = "README.md"
  12. [dependencies]
  13. serde = { version = "1.0", features = [ "derive" ] }
  14. serde_json = "1.0"
  15. thiserror = "1.0.26"
  16. phf = { version = "0.9", features = [ "macros" ] }
  17. zstd = "0.9"
  18. url = { version = "2.2", features = [ "serde" ] }
  19. kuchiki = "0.8"
  20. html5ever = "0.25"
  21. proc-macro2 = { version = "1.0", optional = true }
  22. quote = { version = "1.0", optional = true }
  23. [target."cfg(target_os = \"linux\")".dependencies]
  24. heck = "0.3"
  25. [features]
  26. build = [ "proc-macro2", "quote" ]