forked from AbleOS/ableos_userland
update randomness_handler
This commit is contained in:
parent
e3986b9fc3
commit
46a77f5bd4
|
@ -7,4 +7,4 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
versioning = { path = "../../libraries/versioning" }
|
versioning = { path = "../../libraries/versioning" }
|
||||||
rand = { path = "../../libraries/rand" }
|
cryptography = { path = "../../libraries/cryptography" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
use rand::Csprng;
|
use cryptography::random::Csprng;
|
||||||
use versioning::Version;
|
use versioning::Version;
|
||||||
pub const VERSION: Version = Version::new(0, 1, 0);
|
pub const VERSION: Version = Version::new(0, 1, 0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue