forked from microsoft/windows-drivers-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.32 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
# Avoid using workspace package metadata due to: https://github.com/eupn/macrotest/issues/95 or https://github.com/eupn/macrotest/issues/94
[package]
edition = "2021"
name = "wdk-macros"
version = "0.2.0"
description = "A collection of macros that help make it easier to interact with wdk-sys's direct bindings"
repository = "https://github.com/microsoft/windows-drivers-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["wdk", "windows", "wdf", "wdm", "ffi"]
categories = [
"external-ffi-bindings",
"development-tools::ffi",
"os::windows-apis",
"os",
]
[lib]
proc-macro = true
[dependencies]
cfg-if = "1.0.0"
proc-macro2 = "1.0.78"
quote = "1.0.35"
syn = { version = "2.0.48", features = ["full"] }
[dev-dependencies]
# use path dependency instead of workspace due to: https://github.com/eupn/macrotest/issues/95
wdk-sys.path = "../wdk-sys"
lazy_static = "1.4.0"
# Pin to github version due to: https://github.com/eupn/macrotest/issues/94
macrotest = { git = "https://github.com/eupn/macrotest", rev = "c4151a5" }
paste = "1.0.14"
syn = { version = "2.0.48", features = ["extra-traits"] }
trybuild = "1.0.89"
owo-colors = "4.0.0"
[package.metadata.cargo-udeps.ignore]
development = [
# macrotest and trybuild use dev-dependencies in when compiling their respective tests
"wdk-sys",
]
[features]
default = []
nightly = []