2021-05-09 21:19:37 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime"
|
2023-09-28 20:01:19 +03:00
|
|
|
version = "0.14.1"
|
2021-05-09 21:19:37 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
|
|
categories = [ "gui", "web-programming" ]
|
|
|
|
license = "Apache-2.0 OR MIT"
|
2022-06-16 05:08:50 +03:00
|
|
|
homepage = "https://tauri.app"
|
2021-05-09 21:19:37 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Runtime for Tauri applications"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2023-03-31 18:36:59 +03:00
|
|
|
rust-version = "1.60"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2021-05-09 21:19:37 +03:00
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = [ "--cfg", "doc_cfg" ]
|
|
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
|
|
targets = [
|
|
|
|
"x86_64-pc-windows-msvc",
|
|
|
|
"x86_64-unknown-linux-gnu",
|
|
|
|
"x86_64-apple-darwin"
|
|
|
|
]
|
|
|
|
|
2021-05-09 21:19:37 +03:00
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
2023-09-28 20:01:19 +03:00
|
|
|
tauri-utils = { version = "1.5.0", path = "../tauri-utils" }
|
2022-04-20 20:38:40 +03:00
|
|
|
uuid = { version = "1", features = [ "v4" ] }
|
2021-08-24 17:40:10 +03:00
|
|
|
http = "0.2.4"
|
|
|
|
http-range = "0.1.4"
|
2023-05-16 14:27:15 +03:00
|
|
|
raw-window-handle = "0.5"
|
2022-08-09 20:43:51 +03:00
|
|
|
rand = "0.8"
|
2022-12-26 21:31:40 +03:00
|
|
|
url = { version = "2" }
|
2021-05-10 19:27:42 +03:00
|
|
|
|
2021-05-21 22:16:05 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
2022-09-03 17:07:18 +03:00
|
|
|
webview2-com = "0.19.1"
|
2021-11-12 00:38:41 +03:00
|
|
|
|
2022-03-08 00:20:13 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
2022-09-03 17:07:18 +03:00
|
|
|
version = "0.39.0"
|
2022-03-08 00:20:13 +03:00
|
|
|
features = [ "Win32_Foundation" ]
|
2021-05-21 22:16:05 +03:00
|
|
|
|
2021-07-02 19:08:51 +03:00
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
2022-02-05 08:29:03 +03:00
|
|
|
gtk = { version = "0.15", features = [ "v3_20" ] }
|
2021-07-02 19:08:51 +03:00
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[features]
|
2022-02-07 16:04:33 +03:00
|
|
|
devtools = [ ]
|
2021-05-11 22:20:35 +03:00
|
|
|
system-tray = [ ]
|
2022-01-09 17:29:29 +03:00
|
|
|
macos-private-api = [ ]
|
2022-04-24 21:11:14 +03:00
|
|
|
global-shortcut = [ ]
|
2022-04-24 21:50:42 +03:00
|
|
|
clipboard = [ ]
|