23 lines
512 B
TOML
23 lines
512 B
TOML
|
|
[package]
|
||
|
|
name = "anti_lockscreen_rust"
|
||
|
|
version = "1.0.0"
|
||
|
|
edition = "2021"
|
||
|
|
authors = ["Your Name"]
|
||
|
|
description = "防止锁屏工具 - Rust版本"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
eframe = { version = "0.24", default-features = false, features = ["default_fonts", "glow"] }
|
||
|
|
egui = "0.24"
|
||
|
|
winapi = { version = "0.3", features = ["winuser", "processthreadsapi", "handleapi", "winbase"] }
|
||
|
|
chrono = "0.4"
|
||
|
|
rand = "0.8"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = 3
|
||
|
|
lto = true
|
||
|
|
strip = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "防止锁屏工具"
|
||
|
|
path = "src/main.rs"
|