diff options
author | 2020-08-23 14:15:50 +0100 | |
---|---|---|
committer | 2020-08-23 15:31:06 +0100 | |
commit | 51dfa4d25f54705b2a7efb7fca08062b00bb1891 (patch) | |
tree | f6571eded75e34704161158deaa0c7fc9a2fd6c6 | |
parent | d57bff955cf2dd5dd824cfcecd227969ac1ccb16 (diff) | |
download | cortex-m-51dfa4d25f54705b2a7efb7fca08062b00bb1891.tar.gz cortex-m-51dfa4d25f54705b2a7efb7fca08062b00bb1891.tar.zst cortex-m-51dfa4d25f54705b2a7efb7fca08062b00bb1891.zip |
Add embedded targets to docs.rs
Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -20,6 +20,17 @@ bare-metal = { version = "0.2.0", features = ["const-fn"] } volatile-register = "0.2.0" bitfield = "0.13.2" +[package.metadata.docs.rs] +targets = [ + "thumbv8m.main-none-eabihf", + "thumbv6m-none-eabi", + "thumbv7em-none-eabi", + "thumbv7em-none-eabihf", + "thumbv7m-none-eabi", + "thumbv8m.base-none-eabi", + "thumbv8m.main-none-eabi" +] + [features] cm7-r0p1 = [] inline-asm = [] |