diff options
Diffstat (limited to 'crates/winioctl/Cargo.toml')
| -rw-r--r-- | crates/winioctl/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/winioctl/Cargo.toml b/crates/winioctl/Cargo.toml new file mode 100644 index 0000000..656c14c --- /dev/null +++ b/crates/winioctl/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "winioctl" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +bitflags = "1.3" +thiserror = "1.0" + +[target.'cfg(windows)'.dependencies] +winapi = { version = "0.3", features = ["ioapiset", "winioctl"] } |