Cargo.toml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 = "3284f8d442978269f7654edbdfc9bc51022eaa40", 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. epi = { git = "https://github.com/wusyong/egui", branch = "tao", optional = true }
  22. egui-tao = { git = "https://github.com/wusyong/egui", branch = "tao", features = ["epi"], optional = true }
  23. egui_glow = { git = "https://github.com/wusyong/egui", branch = "tao", optional = true }
  24. tao-glutin = { git = "https://github.com/wusyong/glutin", branch = "tao", version = "0.1.0", optional = true }
  25. glow = { version = "0.11", optional = true }
  26. once_cell = { version = "1.8", optional = true}
  27. [target."cfg(windows)".dependencies]
  28. ico = "0.1"
  29. webview2-com = "0.9.0"
  30. [target."cfg(windows)".dependencies.windows]
  31. version = "0.29.0"
  32. features = [
  33. "Win32_Foundation",
  34. ]
  35. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  36. png = "0.16"
  37. gtk = { version = "0.14", features = [ "v3_20" ] }
  38. [features]
  39. dox = [ "wry/dox" ]
  40. system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]
  41. egui = ["epi", "egui-tao", "egui_glow", "tao-glutin", "glow", "once_cell"]