diff --git a/Cargo.lock b/Cargo.lock index e5b360f..d7f770c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -950,6 +950,15 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9145ac0af1d93c638c98c40cf7d25665f427b2a44ad0a99b1dccf3e2f25bb987" +[[package]] +name = "psm" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "871372391786ccec00d3c5d3d6608905b3d4db263639cfe075d3b60a736d115a" +dependencies = [ + "cc", +] + [[package]] name = "quote" version = "1.0.18" @@ -1108,6 +1117,19 @@ dependencies = [ "num-traits", ] +[[package]] +name = "stacker" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90939d5171a4420b3ff5fbc8954d641e7377335454c259dcb80786f3f21dc9b4" +dependencies = [ + "cc", + "cfg-if 1.0.0", + "libc", + "psm", + "winapi", +] + [[package]] name = "strsim" version = "0.10.0" @@ -1218,6 +1240,7 @@ version = "0.1.0" dependencies = [ "pixels", "rand", + "stacker", "vasm", "vcore", "winit", diff --git a/vemu/Cargo.toml b/vemu/Cargo.toml index 4c83198..dc3f16a 100644 --- a/vemu/Cargo.toml +++ b/vemu/Cargo.toml @@ -10,4 +10,5 @@ vcore = { path = "../vcore" } vasm = { path = "../vasm" } rand = "0.8.0" winit = "0.26.1" -pixels = "0.9.0" \ No newline at end of file +pixels = "0.9.0" +stacker = "0.1" \ No newline at end of file