forked from pevers/tauri-plugin-nosleep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 816 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
[package]
name = "tauri-plugin-nosleep"
version = "0.1.3"
authors = [ "Peter Evers <[email protected]> / forked by Dan0xe <[email protected]>" ]
description = "Tauri plugin to prevent the power save functionality in the OS"
keywords = ["tauri-plugin", "nosleep", "powersave", "caffeine"]
edition = "2021"
rust-version = "1.57"
homepage = "https://github.com/pevers/tauri-plugin-nosleep"
repository = "https://github.com/pevers/tauri-plugin-nosleep"
license = "MIT"
exclude = ["/examples", "/webview-dist", "/webview-src", "node_modules"]
readme = "README.md"
links = "tauri-plugin-nosleep"
[dependencies]
tauri = { version = "2.0.0-beta" }
serde = "1.0"
thiserror = "1.0"
nosleep = { version = "0.2.1", features = ["serde"] }
[build-dependencies]
tauri-plugin = { version = "2.0.0-beta", features = ["build"] }