Add Rng to cargo

This commit is contained in:
Ondrej Babec 2022-03-04 15:33:16 +01:00
parent 3c00a7b81d
commit d28aec782b
No known key found for this signature in database
GPG Key ID: 13E577E3769B2079
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -746,6 +746,7 @@ dependencies = [
"env_logger", "env_logger",
"heapless", "heapless",
"log", "log",
"rand_core",
"tokio", "tokio",
] ]

View File

@ -14,6 +14,7 @@ env_logger = "0.9.0"
log = "0.4.14" log = "0.4.14"
heapless = "0.7.10" heapless = "0.7.10"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
rand_core = "0.6.0"
[patch.crates-io] [patch.crates-io]
embassy = { git = "https://github.com/embassy-rs/embassy.git", rev = "d76cd5ceaf5140c48ef97180beae156c0c0e07c8" } embassy = { git = "https://github.com/embassy-rs/embassy.git", rev = "d76cd5ceaf5140c48ef97180beae156c0c0e07c8" }