diff options
Diffstat (limited to 'examples/01.minimal/Cargo.toml')
| -rw-r--r-- | examples/01.minimal/Cargo.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/01.minimal/Cargo.toml b/examples/01.minimal/Cargo.toml new file mode 100644 index 0000000..f1478aa --- /dev/null +++ b/examples/01.minimal/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "rust.drv.examples.minimal" +description = "Minimal Windows kerneld driver sample." +version = "0.1.0" +authors = ["pravic <[email protected]>"] +readme = "../README.md" + +build = "build.rs" +links = "ntoskrnl" + +[lib] +path = "driver.rs" +name = "minimal" +crate-type = ["dylib"] + +test = false +bench = false + +[profile.release] +opt-level = 3 +debug = true +rpath = false +lto = true +debug-assertions = false + +[dependencies] +winapi-km = { path = "../../../km", version="*" } +core = { path = "../../../libcore", version = "*" } |