feat: add window module

This commit is contained in:
Jonas Kruckenberg 2022-11-03 11:09:17 +01:00
parent 6a0e0a6e82
commit 6bd4dd0489
8 changed files with 1830 additions and 5 deletions

View file

@ -19,10 +19,14 @@ semver = { version = "1.0.14", optional = true }
wasm-bindgen-test = "0.3.33"
tauri-sys = { path = ".", features = ["all"] }
[package.metadata.docs.rs]
all-features = true
[features]
all = ["app", "clipboard", "event", "mocks", "tauri"]
all = ["app", "clipboard", "event", "mocks", "tauri", "window"]
app = ["dep:semver"]
clipboard = []
event = []
mocks = []
tauri = ["dep:url"]
tauri = ["dep:url"]
window = []