|
62 | 62 | //! - [`cortex-m`](https://crates.io/crates/cortex-m) >=v0.7.6 |
63 | 63 | //! - [`cortex-m-rt`](https://crates.io/crates/cortex-m-rt) >=v0.6.13 |
64 | 64 | //! - [`vcell`](https://crates.io/crates/vcell) >=v0.1.2 |
65 | | -//! - [`num-traits`](https://crates.io/crates/const-default) >=v0.2.18 |
66 | 65 | //! |
67 | 66 | //! Furthermore, the "device" feature of `cortex-m-rt` must be enabled when the `rt` feature |
68 | 67 | //! is enabled. The `Cargo.toml` of the device crate will look like this: |
|
127 | 126 | //! - [`msp430`](https://crates.io/crates/msp430) v0.4.x |
128 | 127 | //! - [`msp430-rt`](https://crates.io/crates/msp430-rt) v0.4.x |
129 | 128 | //! - [`vcell`](https://crates.io/crates/vcell) v0.1.x |
130 | | -//! - [`num-traits`](https://crates.io/crates/const-default) v0.2.x |
131 | 129 | //! |
132 | 130 | //! The "device" feature of `msp430-rt` must be enabled when the `rt` feature is |
133 | 131 | //! enabled. The `Cargo.toml` of the device crate will look like this: |
|
138 | 136 | //! msp430 = "0.4.0" |
139 | 137 | //! msp430-rt = { version = "0.4.0", optional = true } |
140 | 138 | //! vcell = "0.1.0" |
141 | | -//! num-traits = { version = "0.2.19", default-features = false } |
142 | 139 | //! |
143 | 140 | //! [features] |
144 | 141 | //! rt = ["msp430-rt/device"] |
|
156 | 153 | //! - [`riscv-peripheral`](https://crates.io/crates/riscv-peripheral) v0.2.x (if target is RISC-V and has standard peripherals) |
157 | 154 | //! - [`riscv-rt`](https://crates.io/crates/riscv-rt) v0.13.x (if target is RISC-V) |
158 | 155 | //! - [`vcell`](https://crates.io/crates/vcell) v0.1.x |
159 | | -//! - [`num-traits`](https://crates.io/crates/const-default) v0.2.x |
160 | 156 | //! |
161 | 157 | //! The `*-rt` dependencies must be optional only enabled when the `rt` feature is enabled. |
162 | 158 | //! If target is RISC-V and supports vectored mode, you must include a feature `v-trap` to activate `riscv-rt/v-trap`. |
|
169 | 165 | //! riscv-peripheral = "0.2.0" |
170 | 166 | //! riscv-rt = { version = "0.13.0", optional = true } |
171 | 167 | //! vcell = "0.1.0" |
172 | | -//! num-traits = { version = "0.2.19", default-features = false } |
173 | 168 | //! |
174 | 169 | //! [features] |
175 | 170 | //! rt = ["riscv-rt"] |
|
0 commit comments