Skip to content

Commit 954d18c

Browse files
committed
Initial commit
0 parents  commit 954d18c

File tree

10 files changed

+973
-0
lines changed

10 files changed

+973
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/.idea

Cargo.lock

Lines changed: 367 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[package]
2+
name = "access-mask"
3+
authors = ["CodeOverFlow"]
4+
version = "0.1.0"
5+
edition = "2024"
6+
description = "access-mask is a command line tool that interprets handle access mask values (both generic and specific)."
7+
keywords = ["access", "mask", "access-mask", "windows"]
8+
categories = ["command-line-utilities"]
9+
readme = "README.md"
10+
license = "MIT"
11+
12+
[target.'cfg(windows)'.dependencies]
13+
clap = { version = "=4.5.32", features = ["derive"] }
14+
thiserror = "=2.0.12"
15+
windows = { version = "=0.61.1", features = [
16+
"Win32_Storage_FileSystem",
17+
"Win32_System_SystemServices",
18+
"Win32_System_Threading",
19+
"Wdk_System_SystemServices",
20+
"Win32_System_StationsAndDesktops",
21+
"Win32_UI_WindowsAndMessaging",
22+
"Win32_System_Registry",
23+
"Win32_Security",
24+
"Win32_Networking_ActiveDirectory",
25+
] }

0 commit comments

Comments
 (0)