Update dependencies + clean up master
authorGreg Burri <greg.burri@gmail.com>
Sun, 27 Oct 2024 10:19:29 +0000 (11:19 +0100)
committerGreg Burri <greg.burri@gmail.com>
Sun, 27 Oct 2024 10:19:29 +0000 (11:19 +0100)
Cargo.toml
deploy.nu
src/main.rs

index 0250280..f1da28f 100644 (file)
@@ -8,10 +8,10 @@ edition = "2021"
 
 [dependencies]
 anyhow = "1.0"
-itertools = "0.11"
+itertools = "0.13"
 rand = "0.8"
 
-lettre = { version = "0.10", features = [
+lettre = { version = "0.11", features = [
     "rustls-tls",
     "smtp-transport",
     "builder",
index 705c62d..904b0a7 100644 (file)
--- a/deploy.nu
+++ b/deploy.nu
@@ -11,13 +11,13 @@ def main [host: string, destination: string, ssh_key: path] {
     def invoke_ssh [command: string] {
         let args = $ssh_args ++ $command
         print $"Executing: ssh ($args)"
-        ssh $args
+        ssh ...$args
     }
 
     def copy_ssh [source: string, destination: string] {
         let args = $scp_args ++ [$source $"($host):($destination)"]
         print $"Executing: scp ($args)"
-        scp $args
+        scp ...$args
     }
 
     # Don't know how to dynamically pass variable arguments.
index 9944ae1..22d6648 100644 (file)
@@ -45,7 +45,7 @@ fn main() -> Result<()> {
     let mut total_ping_duration = Duration::default();
 
     let socket = UdpSocket::bind("0.0.0.0:0").unwrap();
-    socket.connect("192.168.2.102:8739").unwrap();
+    socket.connect(config.staking_address).unwrap();
     socket.set_nonblocking(false).unwrap();
     socket.set_read_timeout(Some(SOCKET_TIMEOUT)).unwrap();
     socket.set_write_timeout(Some(SOCKET_TIMEOUT)).unwrap();