build(deps): update rust-toolchain to 1.67 and bump uuid to 1.4

some of the dependency updates are requiring a higher version of the
rust toolchain. bump to 1.67 and fix new clippy lints.

also fix dprint to 0.39.1 because 0.40 has breaking changes.
This commit is contained in:
Byron Hambly 2023-07-31 10:32:15 +02:00
parent 0dbdf51e6d
commit acdba8474b
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697
12 changed files with 41 additions and 29 deletions

View file

@ -928,7 +928,7 @@ async fn init_bitcoind(node_url: Url, spendable_quantity: u32) -> Result<Client>
bitcoind_client
.generatetoaddress(101 + spendable_quantity, reward_address.clone())
.await?;
let _ = tokio::spawn(mine(bitcoind_client.clone(), reward_address));
tokio::spawn(mine(bitcoind_client.clone(), reward_address));
Ok(bitcoind_client)
}