2021-05-09 21:19:37 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime"
|
2023-05-18 15:10:12 +03:00
|
|
|
version = "0.13.0-alpha.5"
|
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"
|
2021-05-09 21:19:37 +03:00
|
|
|
|
2023-05-26 16:04:01 +03:00
|
|
|
# workspace defined package items
|
|
|
|
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
|
|
|
|
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-05-18 15:10:12 +03:00
|
|
|
tauri-utils = { version = "2.0.0-alpha.5", 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-03-20 17:54:09 +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
|
|
|
|
2023-05-13 13:48:28 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
|
|
|
version = "0.44"
|
|
|
|
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-01-29 21:08:27 +03:00
|
|
|
gtk = { version = "0.16", 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]
|
|
|
|
jni = "0.20"
|
|
|
|
|
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 = [ ]
|