├── src └── lib.rs ├── .gitignore ├── README.md ├── Cargo.toml └── LICENSE /src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![crates.io](https://img.shields.io/crates/v/kernel-build.svg)](https://crates.io/crates/kernel-build) 2 | 3 | # kernel-build-rs 4 | 5 | Helper crate for building Windows Kernel Drivers. 6 | 7 | ## What does it do? 8 | 9 | It sets all the linker search paths in [`build.rs`](./build.rs) which are needed for the kernel driver. 10 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "kernel-build" 3 | version = "0.1.0" 4 | description = "Helper crate for building kernel drivers" 5 | authors = ["not-matthias <26800596+not-matthias@users.noreply.github.com>"] 6 | edition = "2021" 7 | readme = "README.md" 8 | repository = "https://github.com/not-matthias/kernel-build-rs" 9 | license-file = "LICENSE" 10 | 11 | [build-dependencies] 12 | winreg = "0.10.1" 13 | failure = "0.1.8" 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 not-matthias 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------