-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (28 loc) · 1020 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "tauri-plugin-wallpaper"
version = "2.0.0"
authors = ["Meslzy"]
description = "A Tauri plugin to set your window as wallpaper behind desktop icons"
repository = "https://github.com/meslzy/tauri-plugin-wallpaper"
homepage = "https://github.com/meslzy/tauri-plugin-wallpaper"
documentation = "https://docs.rs/tauri-plugin-wallpaper"
edition = "2021"
rust-version = "1.77.2"
include = ["/permissions", "/src", "build.rs", "Cargo.toml"]
links = "tauri-plugin-wallpaper"
license = "MIT"
[package.metadata.platforms.support]
windows = { level = "full", notes = "" }
linux = { level = "none", notes = "" }
macos = { level = "none", notes = "" }
android = { level = "none", notes = "" }
ios = { level = "none", notes = "" }
[dependencies]
tauri = { version = "2.0.6" }
serde = "1.0"
thiserror = "1.0"
[target."cfg(windows)".dependencies.windows]
version = "0.58"
features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"]
[build-dependencies]
tauri-plugin = { version = "2.0.1", features = ["build"] }