-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 739 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
28
29
30
[package]
name = "windows-permissions"
version = "0.2.4"
authors = ["Daniel Dulaney <dan@dulaney.xyz>"]
edition = "2018"
description = "Safe Rust bindings to Windows permissions APIs"
repository = "https://github.com/danieldulaney/windows-permissions-rs"
readme = "README.md"
keywords = ["windows", "security", "permissions"]
categories = ["api-bindings", "authentication", "os::windows-apis"]
license = "MIT"
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
[dependencies]
winapi = { version = "0.3.9", features = [
"std",
"aclapi",
"handleapi",
"sddl",
"securitybaseapi",
"winerror",
"winnt",
]}
bitflags = "1"
[dev-dependencies]
itertools = "0.8"
tempfile = "3"