Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "tauri-build"
  3. version = "1.2.1"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. categories = [ "gui", "web-programming" ]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.app"
  8. repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
  9. description = "build time code to pair with https://crates.io/crates/tauri"
  10. edition = "2021"
  11. rust-version = "1.59"
  12. exclude = [ "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [package.metadata.docs.rs]
  15. all-features = true
  16. rustdoc-args = [ "--cfg", "doc_cfg" ]
  17. [dependencies]
  18. anyhow = "1"
  19. quote = { version = "1", optional = true }
  20. tauri-codegen = { version = "1.2.1", path = "../tauri-codegen", optional = true }
  21. tauri-utils = { version = "1.2.1", path = "../tauri-utils", features = [ "build", "resources" ] }
  22. cargo_toml = "0.14"
  23. serde_json = "1"
  24. heck = "0.4"
  25. json-patch = "0.3"
  26. [target."cfg(windows)".dependencies]
  27. winres = "0.1"
  28. semver = "1"
  29. [features]
  30. codegen = [ "tauri-codegen", "quote" ]
  31. isolation = [ "tauri-codegen/isolation", "tauri-utils/isolation" ]
  32. config-json5 = [ "tauri-utils/config-json5" ]
  33. config-toml = [ "tauri-utils/config-toml" ]