Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "tauri-runtime"
  3. version = "0.10.2"
  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.57"
  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. 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.0.3", path = "../tauri-utils" }
  28. uuid = { version = "1", features = [ "v4" ] }
  29. http = "0.2.4"
  30. http-range = "0.1.4"
  31. infer = "0.7"
  32. raw-window-handle = "0.4.3"
  33. [target."cfg(windows)".dependencies]
  34. webview2-com = "0.16.0"
  35. [target."cfg(windows)".dependencies.windows]
  36. version = "0.37.0"
  37. features = [ "Win32_Foundation" ]
  38. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  39. gtk = { version = "0.15", features = [ "v3_20" ] }
  40. [features]
  41. devtools = [ ]
  42. system-tray = [ ]
  43. macos-private-api = [ ]
  44. global-shortcut = [ ]
  45. clipboard = [ ]