mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-23 10:43:25 +03:00
bd29b05f15
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
[package]
|
|
name = "tauri-runtime"
|
|
version = "0.13.0-alpha.6"
|
|
description = "Runtime for Tauri applications"
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
authors = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
categories = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[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"
|
|
]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tauri-utils = { version = "2.0.0-alpha.6", path = "../tauri-utils" }
|
|
uuid = { version = "1", features = [ "v4" ] }
|
|
http = "0.2.4"
|
|
http-range = "0.1.4"
|
|
raw-window-handle = "0.5"
|
|
rand = "0.8"
|
|
url = { version = "2" }
|
|
|
|
[target."cfg(windows)".dependencies.windows]
|
|
version = "0.44"
|
|
features = [ "Win32_Foundation" ]
|
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
|
gtk = { version = "0.16", features = [ "v3_24" ] }
|
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
|
jni = "0.20"
|
|
|
|
[features]
|
|
devtools = [ ]
|
|
system-tray = [ ]
|
|
macos-private-api = [ ]
|