diff options
| author | Fuwn <[email protected]> | 2022-01-04 13:48:00 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-04 13:48:00 -0800 |
| commit | c33b9e296ab9563f2b180a8fa63155665055261e (patch) | |
| tree | 086cf2702939fd25769fea83e117d7058af2e75a /crates/windows-kernel-build/Cargo.toml | |
| parent | fix(makefile.toml): tidy up (diff) | |
| download | driver-c33b9e296ab9563f2b180a8fa63155665055261e.tar.xz driver-c33b9e296ab9563f2b180a8fa63155665055261e.zip | |
feat(examples): lots of new examples
Thanks, StephanvanSchaik.
Diffstat (limited to 'crates/windows-kernel-build/Cargo.toml')
| -rw-r--r-- | crates/windows-kernel-build/Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/crates/windows-kernel-build/Cargo.toml b/crates/windows-kernel-build/Cargo.toml index 8938bc0..bd23fab 100644 --- a/crates/windows-kernel-build/Cargo.toml +++ b/crates/windows-kernel-build/Cargo.toml @@ -3,7 +3,13 @@ name = "windows-kernel-build" version = "0.1.0" edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[[example]] +name = "hello_world" +crate-type = ["cdylib"] +path = "examples/hello_world/src/lib.rs" + +[dev-dependencies] +winapi = { git = "https://github.com/Trantect/winapi-rs.git", branch = "feature/km", features = ["wdm", "ntstatus", "ntdef"] } [dependencies] thiserror = "1.0" |