Implement async RNG, including rand_core sync traits.
This commit is contained in:
@ -15,6 +15,7 @@ cortex-m-rt = { version = "0.6.13", features = ["device"] }
|
||||
cortex-m = "0.7.1"
|
||||
embedded-hal = { version = "0.2.4" }
|
||||
futures = { version = "0.3.5", default-features = false, features = ["async-await"] }
|
||||
rand_core = { version = "0.6.2", optional=true}
|
||||
|
||||
[build-dependencies]
|
||||
regex = "1.4.6"
|
||||
@ -321,7 +322,7 @@ _exti = []
|
||||
_exti_v1 = []
|
||||
_gpio = []
|
||||
_gpio_v2 = []
|
||||
_rng = []
|
||||
_rng = [ "rand_core",]
|
||||
_rng_v1 = []
|
||||
_stm32f4 = []
|
||||
_stm32l4 = []
|
||||
|
Reference in New Issue
Block a user