Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "tauri-runtime"
  3. version = "0.12.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"
  9. description = "Runtime for Tauri applications"
  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. default-target = "x86_64-unknown-linux-gnu"
  18. targets = [
  19. "x86_64-pc-windows-msvc",
  20. "x86_64-unknown-linux-gnu",
  21. "x86_64-apple-darwin"
  22. ]
  23. [dependencies]
  24. serde = { version = "1.0", features = [ "derive" ] }
  25. serde_json = "1.0"
  26. thiserror = "1.0"
  27. tauri-utils = { version = "1.2.1", path = "../tauri-utils" }
  28. uuid = { version = "1", features = [ "v4" ] }
  29. http = "0.2.4"
  30. http-range = "0.1.4"
  31. raw-window-handle = "0.5"
  32. rand = "0.8"
  33. url = { version = "2" }
  34. [target."cfg(windows)".dependencies]
  35. webview2-com = "0.19.1"
  36. [target."cfg(windows)".dependencies.windows]
  37. version = "0.39.0"
  38. features = [ "Win32_Foundation" ]
  39. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  40. gtk = { version = "0.15", features = [ "v3_20" ] }
  41. [features]
  42. devtools = [ ]
  43. system-tray = [ ]
  44. macos-private-api = [ ]
  45. global-shortcut = [ ]
  46. clipboard = [ ]