mirror of
https://github.com/tauri-apps/web-view.git
synced 2026-02-04 02:11:18 +01:00
33 lines
802 B
TOML
33 lines
802 B
TOML
[package]
|
|
name = "webview-sys"
|
|
version = "0.5.0"
|
|
authors = ["Boscop", "zxey <r.hozak@seznam.cz>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/Boscop/web-view"
|
|
description = "Rust native ffi bindings for webview"
|
|
keywords = ["web", "gui", "desktop", "electron", "webkit"]
|
|
categories = ["gui", "web-programming", "api-bindings", "rendering", "visualization"]
|
|
build = "build.rs"
|
|
links = "webview"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "webview_sys"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
edge = []
|
|
|
|
[target.'cfg(all(target_family = "unix", not(target_os = "macos")))'.dependencies]
|
|
javascriptcore-rs-sys = "0.2"
|
|
gtk-sys = "0.9"
|
|
glib-sys = "0.9"
|
|
gobject-sys = "0.9"
|
|
webkit2gtk-sys = { version = "0.10", features = ["v2_8"] }
|
|
gdk-sys = "0.9"
|
|
gio-sys = "0.9"
|
|
libc = "0.2"
|
|
|
|
[build-dependencies]
|
|
cc = "1"
|
|
pkg-config = "0.3" |