summaryrefslogtreecommitdiff
path: root/crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-01-04 13:48:00 -0800
committerFuwn <[email protected]>2022-01-04 13:48:00 -0800
commitc33b9e296ab9563f2b180a8fa63155665055261e (patch)
tree086cf2702939fd25769fea83e117d7058af2e75a /crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml
parentfix(makefile.toml): tidy up (diff)
downloaddriver-c33b9e296ab9563f2b180a8fa63155665055261e.tar.xz
driver-c33b9e296ab9563f2b180a8fa63155665055261e.zip
feat(examples): lots of new examples
Thanks, StephanvanSchaik.
Diffstat (limited to 'crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml')
-rw-r--r--crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml b/crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml
new file mode 100644
index 0000000..2e6dad0
--- /dev/null
+++ b/crates/windows-kernel-rs/examples/reading_and_writing/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "reading_and_writing"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2021"
+publish = false
+build = "../build.rs"
+
+[lib]
+crate-type = ["cdylib"]
+
+[build-dependencies]
+windows-kernel-build = { path = "../../../windows-kernel-build" }
+
+[dependencies]
+widestring = { version = "0.4", default-features = false, features = ["alloc"] }
+windows-kernel-rs = { path = "../../../windows-kernel-rs" }
+windows-kernel-sys = { path = "../../../windows-kernel-sys" }