Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "tauri-runtime"
  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 = "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.0-beta.3", path = "../tauri-utils" }
  28. uuid = { version = "0.8.2", features = [ "v4" ] }
  29. http = "0.2.4"
  30. http-range = "0.1.4"
  31. infer = "0.4"
  32. [target."cfg(windows)".dependencies]
  33. webview2-com = "0.11.0"
  34. [target."cfg(windows)".dependencies.windows]
  35. version = "0.30.0"
  36. features = [
  37. "Win32_Foundation",
  38. ]
  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 = [ ]