diff options
Diffstat (limited to 'crates/windows-kernel-rs/Cargo.toml')
| -rw-r--r-- | crates/windows-kernel-rs/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/windows-kernel-rs/Cargo.toml b/crates/windows-kernel-rs/Cargo.toml new file mode 100644 index 0000000..e8f4660 --- /dev/null +++ b/crates/windows-kernel-rs/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "windows-kernel-rs" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[profile.dev] +panic = "abort" + +[profile.release] +panic = "abort" + +[features] +default = ["alloc"] +alloc = [] +system = [] + +[dependencies] +bitflags = "1.3" +cty = "0.2" +lazy_static = { version = "1.4", features = ["spin_no_std"] } +widestring = { version = "0.4", default-features = false, features = ["alloc"]} +windows-kernel-sys = { path = "../windows-kernel-sys" } |