diff --git a/Cargo.toml b/Cargo.toml index ef642bf..0e809a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,3 +35,12 @@ embedded-io = ["dep:embedded-io"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] +default-garget = [ "x86_64-unknown-none" ] +# Builds on any no_std target. This selection shows that the crate works on x86, +# ARM, and RISC-V as example (most popular platforms). +targets = [ + "aarch64-unknown-none", + "i686-unknown-uefi", + "riscv64im-unknown-none-elf", + "x86_64-unknown-none", +] diff --git a/test/Cargo.lock b/test/Cargo.lock index 0c82e29..d1a4e36 100644 --- a/test/Cargo.lock +++ b/test/Cargo.lock @@ -38,7 +38,7 @@ checksum = "8bb0fd6580eeed0103c054e3fba2c2618ff476943762f28a645b63b8692b21c9" [[package]] name = "uart_16550" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bitflags", ]