Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "tauri-runtime-wry"
  3. version = "0.1.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"
  9. description = "Wry bindings to the Tauri runtime"
  10. edition = "2018"
  11. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  12. readme = "README.md"
  13. [dependencies]
  14. #wry = { version = "0.11", default-features = false, features = [ "file-drop", "protocol" ] }
  15. wry = { git = "https://github.com/tauri-apps/wry", branch = "dev", default-features = false, features = [ "file-drop", "protocol" ] }
  16. tauri-runtime = { version = "0.1.4", path = "../tauri-runtime" }
  17. tauri-utils = { version = "1.0.0-beta.2", path = "../tauri-utils" }
  18. uuid = { version = "0.8.2", features = [ "v4" ] }
  19. infer = "0.4"
  20. [target."cfg(windows)".dependencies]
  21. ico = "0.1"
  22. winapi = "0.3"
  23. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  24. png = "0.16"
  25. gtk = { version = "0.9", features = [ "v3_16" ] }
  26. [features]
  27. dox = [ "wry/dox" ]
  28. menu = [ "tauri-runtime/menu"]
  29. system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]