2021-05-09 21:19:37 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime"
|
2024-02-23 00:50:24 +03:00
|
|
|
version = "2.0.0-beta.4"
|
2021-05-09 21:19:37 +03:00
|
|
|
description = "Runtime for Tauri applications"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2023-05-26 16:04:01 +03:00
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
categories = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2023-10-28 14:04:35 +03:00
|
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
2021-05-10 19:27:42 +03:00
|
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
|
|
targets = [
|
|
|
|
"x86_64-pc-windows-msvc",
|
|
|
|
"x86_64-unknown-linux-gnu",
|
2023-10-11 23:16:01 +03:00
|
|
|
"x86_64-apple-darwin",
|
|
|
|
"x86_64-linux-android",
|
|
|
|
"x86_64-apple-ios"
|
2021-05-10 19:27:42 +03:00
|
|
|
]
|
|
|
|
|
2021-05-09 21:19:37 +03:00
|
|
|
[dependencies]
|
2024-02-19 21:49:28 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2021-05-09 21:19:37 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
2024-02-23 00:50:24 +03:00
|
|
|
tauri-utils = { version = "2.0.0-beta.4", path = "../tauri-utils" }
|
2021-08-24 17:40:10 +03:00
|
|
|
http = "0.2.4"
|
2024-02-08 04:26:29 +03:00
|
|
|
raw-window-handle = "0.6"
|
2022-12-26 21:31:40 +03:00
|
|
|
url = { version = "2" }
|
2021-05-10 19:27:42 +03:00
|
|
|
|
2023-05-13 13:48:28 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
2023-11-21 18:32:06 +03:00
|
|
|
version = "0.52"
|
2023-05-13 13:48:28 +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]
|
2023-10-24 18:26:24 +03:00
|
|
|
gtk = { version = "0.18", features = [ "v3_24" ] }
|
2021-07-02 19:08:51 +03:00
|
|
|
|
2023-02-06 14:56:00 +03:00
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
2023-08-14 04:25:50 +03:00
|
|
|
jni = "0.21"
|
2023-02-06 14:56:00 +03:00
|
|
|
|
2023-07-17 00:34:43 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
|
|
url = "2"
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[features]
|
2022-02-07 16:04:33 +03:00
|
|
|
devtools = [ ]
|
2022-01-09 17:29:29 +03:00
|
|
|
macos-private-api = [ ]
|