Skip to content

Commit

Permalink
Merge #160
Browse files Browse the repository at this point in the history
160: Update dev dependencies to actual version r=therealprof a=no111u3

I clean update developing dependencies to buildable state.

Co-authored-by: Boris Vinogradov <no111u3@gmail.com>
  • Loading branch information
bors[bot] and no111u3 committed Nov 2, 2019
2 parents a5c0e3c + 1932021 commit 7dd907c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version = "1.0.2"
version = "0.1.1"

[dev-dependencies]
stm32f30x = "0.6.0"
stm32f3 = { version = "0.8", features = ["stm32f303", "rt"] }
futures = "0.1.17"

[features]
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,19 @@
//! Shown below is an implementation of some of the HAL traits for the [`stm32f30x`] crate. This
//! single implementation will work for *any* microcontroller in the STM32F30x family.
//!
//! [`stm32f30x`]: https://crates.io/crates/stm32f30x
//! [`stm32f3`]: https://crates.io/crates/stm32f3
//!
//! ```
//! // crate: stm32f30x-hal
//! // An implementation of the `embedded-hal` traits for STM32F30x microcontrollers
//! // crate: stm32f3xx-hal
//! // An implementation of the `embedded-hal` traits for STM32F3xx microcontrollers
//!
//! extern crate embedded_hal as hal;
//! extern crate nb;
//!
//! // device crate
//! extern crate stm32f30x;
//! extern crate stm32f3;
//!
//! use stm32f30x::USART1;
//! use stm32f3::stm32f303::USART1;
//!
//! /// A serial interface
//! // NOTE generic over the USART peripheral
Expand Down

0 comments on commit 7dd907c

Please sign in to comment.