update randomness_handler

master
Able 2022-12-05 09:26:26 -06:00
parent 2735bf3ff1
commit 90659806ec
Signed by untrusted user: able
GPG Key ID: 0BD8B45C30DCA887
2 changed files with 2 additions and 2 deletions

View File

@ -7,4 +7,4 @@ edition = "2021"
[dependencies] [dependencies]
versioning = { path = "../../libraries/versioning" } versioning = { path = "../../libraries/versioning" }
rand = { path = "../../libraries/rand" } cryptography = { path = "../../libraries/cryptography" }

View File

@ -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);