-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 1.07 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "appx"
version = "0.0.0-git"
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
edition = "2018"
repository = "https://github.com/MaulingMonkey/appx"
documentation = "https://docs.rs/appx"
license = "Apache-2.0 OR MIT"
readme = "Readme.md"
description = "Managing appx packages"
keywords = ["appx"]
categories = ["api-bindings", "os::windows-apis"]
exclude = [".vscode"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
[lib]
path = "src/_lib.rs"
[dev-dependencies]
wchar = "0.6.1"
[target.'cfg(windows)'.dependencies]
wchar = "0.6.1"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = [
# shared
"minwindef",
"ntdef",
"winerror",
# um
"combaseapi",
"handleapi",
"processthreadsapi",
"synchapi",
"winbase",
"winnt",
"winreg",
]