-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
29 lines (24 loc) · 993 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
[package]
name = "static-keys"
version = "0.6.2"
edition = "2024"
authors = ["Evian-Zhang <evianzhang1999@163.com>"]
license = "MIT OR Apache-2.0"
description = "Reimplement Linux kernel static keys for Rust userland applications."
homepage = "https://evian-zhang.github.io/static-keys/en/"
documentation = "https://docs.rs/static-keys"
repository = "https://github.com/Evian-Zhang/static-keys"
readme = "README.md"
keywords = ["static-keys", "Linux-kernel"]
categories = ["rust-patterns", "no-std"]
[badges]
maintenance = { status = "actively-developed" }
[target.'cfg(target_os = "linux")'.dependencies]
libc = { version = "0.2", default-features = false }
clear-cache = "0.1"
[target.'cfg(target_os = "macos")'.dependencies]
mach2 = "0.4"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.58", features = ["Win32_System_SystemInformation", "Win32_System_Memory", "Win32_System_Threading", "Win32_System_Diagnostics_Debug"] }
[dev-dependencies]
trybuild = "1"