mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 00:52:41 +03:00
e1e85dc2a5
* chore: fix ci and cleanup leftovers
1. removed leftover feature flags
2. remove zip/extract apis which are not used anymore
3. removed leftoever scopes
4. removed leftover allowlist and updater options
5. updated the example api
* remove leftover updater structs
* move updater under bundle and remove uneeded options
* fix cli on linux
* remove create_proxy
* clippy
* more clippy
* clippppy
* readd path api
* fix api example
* remove window allowlist
* remove window from allowlist config
* remove `all` allowlist option
* remove file_move
* lint
* fix windows build
* remvoe unused deps
* remvoe allowlist config option, move protocol to `security > asset_protocol`
* fix diffing features
* fmt and test
* fix scope alias
* change files
* android lint
* simplify allow_file impl
* Revert "simplify allow_file impl"
This reverts commit b8882f2fd0
.
* expose scopes
* remove unused error variants
* protocol-asset on docs.rs
* ignore reqwest on udeps
---------
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
52 lines
1.7 KiB
TOML
52 lines
1.7 KiB
TOML
[package]
|
|
name = "tauri-runtime-wry"
|
|
version = "0.13.0-alpha.4"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
categories = [ "gui", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Wry bindings to the Tauri runtime"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wry = { version = "0.28.3", default-features = false, features = [ "file-drop", "protocol" ] }
|
|
tauri-runtime = { version = "0.13.0-alpha.4", path = "../tauri-runtime" }
|
|
tauri-utils = { version = "2.0.0-alpha.4", path = "../tauri-utils" }
|
|
uuid = { version = "1", features = [ "v4" ] }
|
|
rand = "0.8"
|
|
raw-window-handle = "0.5"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
webview2-com = "0.22"
|
|
|
|
[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" ] }
|
|
webkit2gtk = { version = "0.19.1", features = [ "v2_38" ] }
|
|
percent-encoding = "2.1"
|
|
|
|
[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
|
|
cocoa = "0.24"
|
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
|
jni = "0.20"
|
|
|
|
[features]
|
|
dox = [ "wry/dox" ]
|
|
devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
|
|
system-tray = [ "tauri-runtime/system-tray", "wry/tray" ]
|
|
macos-private-api = [
|
|
"wry/fullscreen",
|
|
"wry/transparent",
|
|
"tauri-runtime/macos-private-api"
|
|
]
|
|
objc-exception = [ "wry/objc-exception" ]
|
|
linux-headers = [ "wry/linux-headers", "webkit2gtk/v2_36" ]
|