diff --git a/Cargo.lock b/Cargo.lock index ddcd073fe..11d8a1900 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,7 +258,7 @@ dependencies = [ "bdk", "bitcoin", "itertools", - "rand 0.6.5", + "rand 0.8.4", "rand_chacha 0.1.1", "secp256k1-zkp", ] @@ -416,7 +416,7 @@ dependencies = [ "clap", "futures", "hkdf", - "rand 0.6.5", + "rand 0.8.4", "rocket", "rocket_db_pools", "rust_decimal", diff --git a/cfd_protocol/Cargo.toml b/cfd_protocol/Cargo.toml index ae74903e1..6f0a14375 100644 --- a/cfd_protocol/Cargo.toml +++ b/cfd_protocol/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" anyhow = "1" bdk = { git = "https://github.com/bitcoindevkit/bdk/" } itertools = "0.10" -rand = "0.6" +rand = "0.8" rand_chacha = "0.1" secp256k1-zkp = { version = "0.4", features = ["hashes", "global-context"] } diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 09e26e661..f9c9931a5 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -10,7 +10,7 @@ cfd_protocol = { path = "../cfd_protocol" } clap = "3.0.0-beta.4" futures = { version = "0.3", default-features = false } hkdf = "0.11" -rand = "0.6" +rand = "0.8" rocket = { git = "https://github.com/SergioBenitez/Rocket", features = ["json"] } rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket", features = ["sqlx_sqlite"] } rust_decimal = { version = "1.15", features = ["serde-float", "serde-arbitrary-precision"] }