File tree Expand file tree Collapse file tree 5 files changed +3
-30
lines changed Expand file tree Collapse file tree 5 files changed +3
-30
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
20
20
- ` blocking::Serial ` : renamed ` bwrite_all ` to ` write ` , ` bflush ` to `flush.
21
21
- Removed ` prelude ` to avoid method name conflicts between different flavors (blocking, nb) of the same trait. Traits must now be manually imported.
22
22
23
+ ### Removed
24
+ - Removed random number generation (` rng ` ) traits in favor of [ rand_core] ( https://crates.io/crates/rand_core ) .
25
+
23
26
## [ v1.0.0-alpha.4] - 2020-11-11
24
27
25
28
### Fixed
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ pub mod digital;
9
9
pub mod i2c;
10
10
pub mod pwm;
11
11
pub mod qei;
12
- pub mod rng;
13
12
pub mod serial;
14
13
pub mod spi;
15
14
pub mod watchdog;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
pub use nb:: { block, Error , Result } ;
18
18
pub mod adc;
19
19
pub mod capture;
20
- pub mod rng;
21
20
pub mod serial;
22
21
pub mod spi;
23
22
pub mod timer;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments