We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2a26b9 + b03bf4d commit 92d4f71Copy full SHA for 92d4f71
Cargo.toml
@@ -37,7 +37,8 @@ panic = "abort"
37
panic = "abort"
38
39
[dependencies]
40
-neotron-common-bios = "0.7"
+neotron-common-bios = "0.8"
41
+pc-keyboard = "0.7"
42
r0 = "1.0"
43
postcard = "0.5"
44
serde = { version = "1.0", default-features = false }
build.rs
@@ -26,4 +26,8 @@ fn main() {
26
if Ok("macos") == env::var("CARGO_CFG_TARGET_OS").as_deref() {
27
println!("cargo:rustc-link-lib=c");
28
}
29
+
30
+ if Ok("windows") == env::var("CARGO_CFG_TARGET_OS").as_deref() {
31
+ println!("cargo:rustc-link-lib=dylib=msvcrt");
32
+ }
33
0 commit comments