Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "tauri-runtime-wry"
  3. version = "0.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.studio"
  8. repository = "https://github.com/tauri-apps/tauri"
  9. description = "Wry bindings to the Tauri runtime"
  10. edition = "2021"
  11. rust-version = "1.56"
  12. exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [dependencies]
  15. #wry = { version = "0.12", default-features = false, features = [ "file-drop", "protocol" ] }
  16. wry = { git = "https://github.com/tauri-apps/wry", rev = "11557f15cf759fcf3008598b684c009f03a8c645", default-features = false, features = [ "file-drop", "protocol", "transparent", "fullscreen" ] }
  17. tauri-runtime = { version = "0.2.1", path = "../tauri-runtime" }
  18. tauri-utils = { version = "1.0.0-beta.3", path = "../tauri-utils" }
  19. uuid = { version = "0.8.2", features = [ "v4" ] }
  20. infer = "0.4"
  21. [target."cfg(windows)".dependencies]
  22. ico = "0.1"
  23. webview2-com = "0.7.0"
  24. [target."cfg(windows)".dependencies.windows]
  25. version = "0.25.0"
  26. features = [
  27. "Win32_Foundation",
  28. ]
  29. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  30. png = "0.16"
  31. gtk = { version = "0.14", features = [ "v3_20" ] }
  32. [features]
  33. dox = [ "wry/dox" ]
  34. system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]