Cargo.toml 961 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "tauri-build"
  3. version = "1.0.0-beta.4"
  4. authors = [ "Tauri Programme within The Commons Conservancy" ]
  5. categories = [ "gui", "web-programming" ]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.studio"
  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.56"
  12. exclude = [ ".license_template", "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.0.0-beta.4", path = "../tauri-codegen", optional = true }
  21. [target."cfg(windows)".dependencies]
  22. winres = "0.1"
  23. serde_json = "1.0"
  24. tauri-utils = { version = "1.0.0-beta.0", path = "../tauri-utils", features = [ "build" ] }
  25. [features]
  26. codegen = [ "tauri-codegen", "quote" ]