|
@@ -1,33 +1,33 @@
|
|
[package]
|
|
[package]
|
|
name = "tauri-runtime"
|
|
name = "tauri-runtime"
|
|
-version = "0.14.2"
|
|
|
|
-authors = ["Tauri Programme within The Commons Conservancy"]
|
|
|
|
-categories = ["gui", "web-programming"]
|
|
|
|
|
|
+version = "0.14.3"
|
|
|
|
+authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
|
|
+categories = [ "gui", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Runtime for Tauri applications"
|
|
description = "Runtime for Tauri applications"
|
|
edition = "2021"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
rust-version = "1.60"
|
|
-exclude = ["CHANGELOG.md", "/target"]
|
|
|
|
|
|
+exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
readme = "README.md"
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
all-features = true
|
|
-rustdoc-args = ["--cfg", "doc_cfg"]
|
|
|
|
|
|
+rustdoc-args = [ "--cfg", "doc_cfg" ]
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
targets = [
|
|
targets = [
|
|
"x86_64-pc-windows-msvc",
|
|
"x86_64-pc-windows-msvc",
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-unknown-linux-gnu",
|
|
- "x86_64-apple-darwin",
|
|
|
|
|
|
+ "x86_64-apple-darwin"
|
|
]
|
|
]
|
|
|
|
|
|
[dependencies]
|
|
[dependencies]
|
|
-serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
|
+serde = { version = "1.0", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
thiserror = "1.0"
|
|
-tauri-utils = { version = "1.5.3", path = "../tauri-utils" }
|
|
|
|
-uuid = { version = "1", features = ["v4"] }
|
|
|
|
|
|
+tauri-utils = { version = "1.5.4", path = "../tauri-utils" }
|
|
|
|
+uuid = { version = "1", features = [ "v4" ] }
|
|
http = "0.2.4"
|
|
http = "0.2.4"
|
|
http-range = "0.1.4"
|
|
http-range = "0.1.4"
|
|
raw-window-handle = "0.5"
|
|
raw-window-handle = "0.5"
|
|
@@ -37,16 +37,16 @@ url = { version = "2" }
|
|
[target."cfg(windows)".dependencies]
|
|
[target."cfg(windows)".dependencies]
|
|
webview2-com = "0.19.1"
|
|
webview2-com = "0.19.1"
|
|
|
|
|
|
-[target."cfg(windows)".dependencies.windows]
|
|
|
|
-version = "0.39.0"
|
|
|
|
-features = ["Win32_Foundation"]
|
|
|
|
|
|
+ [target."cfg(windows)".dependencies.windows]
|
|
|
|
+ version = "0.39.0"
|
|
|
|
+ features = [ "Win32_Foundation" ]
|
|
|
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
|
-gtk = { version = "0.15", features = ["v3_20"] }
|
|
|
|
|
|
+gtk = { version = "0.15", features = [ "v3_20" ] }
|
|
|
|
|
|
[features]
|
|
[features]
|
|
-devtools = []
|
|
|
|
-system-tray = []
|
|
|
|
-macos-private-api = []
|
|
|
|
-global-shortcut = []
|
|
|
|
-clipboard = []
|
|
|
|
|
|
+devtools = [ ]
|
|
|
|
+system-tray = [ ]
|
|
|
|
+macos-private-api = [ ]
|
|
|
|
+global-shortcut = [ ]
|
|
|
|
+clipboard = [ ]
|