diff options
| author | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
| commit | 85db2b507f3f69b32811c54a89d9ac7bbbc46121 (patch) | |
| tree | 2efd66da452f8a6a2cc6c91584c925f237506ddf /crates/windows-kernel-sys/Cargo.toml | |
| download | driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.tar.xz driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.zip | |
feat(driver): commit primer
Diffstat (limited to 'crates/windows-kernel-sys/Cargo.toml')
| -rw-r--r-- | crates/windows-kernel-sys/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/windows-kernel-sys/Cargo.toml b/crates/windows-kernel-sys/Cargo.toml new file mode 100644 index 0000000..dc0819d --- /dev/null +++ b/crates/windows-kernel-sys/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "windows-kernel-sys" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[features] +default = ["intrin", "ntoskrnl"] +intrin = [] +ntoskrnl = [] +netio = [] + +[dependencies] +cty = "0.2" + +[build-dependencies] +bindgen = "0.59" +cc = "1.0" +windows-kernel-build = { path = "../windows-kernel-build" } |