Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "tauri-runtime"
  3. version = "0.13.0-alpha.6"
  4. description = "Runtime for Tauri applications"
  5. exclude = [ "CHANGELOG.md", "/target" ]
  6. readme = "README.md"
  7. authors = { workspace = true }
  8. homepage = { workspace = true }
  9. repository = { workspace = true }
  10. categories = { workspace = true }
  11. license = { workspace = true }
  12. edition = { workspace = true }
  13. rust-version = { workspace = true }
  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 = "2.0.0-alpha.6", 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.windows]
  35. version = "0.44"
  36. features = [ "Win32_Foundation" ]
  37. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  38. gtk = { version = "0.16", features = [ "v3_24" ] }
  39. [target."cfg(target_os = \"android\")".dependencies]
  40. jni = "0.20"
  41. [features]
  42. devtools = [ ]
  43. system-tray = [ ]
  44. macos-private-api = [ ]