-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 925 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 925 Bytes
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
[package]
name = "access-mask"
authors = ["CodeOverFlow"]
version = "0.1.0"
edition = "2024"
description = "access-mask is a command line tool that interprets handle access mask values (both generic and specific)."
keywords = ["access", "mask", "access-mask", "windows"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/codeOverFlow/access-mask"
repository = "https://github.com/codeOverFlow/access-mask"
[target.'cfg(windows)'.dependencies]
clap = { version = "=4.5.32", features = ["derive"] }
thiserror = "=2.0.12"
windows = { version = "=0.61.1", features = [
"Win32_Storage_FileSystem",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Wdk_System_SystemServices",
"Win32_System_StationsAndDesktops",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Registry",
"Win32_Security",
"Win32_Networking_ActiveDirectory",
] }