From a223110ba88f95e3815553d72d2492bbd2a7b244 Mon Sep 17 00:00:00 2001 From: Marcin Anforowicz Date: Sun, 7 Jul 2024 21:24:37 -0700 Subject: [PATCH] Updated versions of crates --- gday/Cargo.toml | 8 ++++---- gday_contact_exchange_protocol/Cargo.toml | 2 +- gday_encryption/Cargo.toml | 2 +- gday_file_transfer/Cargo.toml | 2 +- gday_hole_punch/Cargo.toml | 4 ++-- gday_server/Cargo.toml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/gday/Cargo.toml b/gday/Cargo.toml index 740847c..2dabf73 100644 --- a/gday/Cargo.toml +++ b/gday/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday" -version = "0.1.1" +version = "0.2.0" description = "Command line tool to securely send files (without a relay or port forwarding)." homepage = "https://github.com/manforowicz/gday/tree/main/gday" categories = ["command-line-utilities", "network-programming", "filesystem"] @@ -16,9 +16,9 @@ repository.workspace = true [dependencies] clap = { version = "4.5.8", features = ["derive"] } env_logger = "0.11.3" -gday_encryption = { version = "^0.1.1", path = "../gday_encryption" } -gday_file_transfer = { version = "^0.1.1", path = "../gday_file_transfer" } -gday_hole_punch = { version = "^0.1.1", path = "../gday_hole_punch" } +gday_encryption = { version = "^0.2.0", path = "../gday_encryption" } +gday_file_transfer = { version = "^0.2.0", path = "../gday_file_transfer" } +gday_hole_punch = { version = "^0.2.0", path = "../gday_hole_punch" } indicatif = "0.17.8" log = "0.4.22" owo-colors = "4.0.0" diff --git a/gday_contact_exchange_protocol/Cargo.toml b/gday_contact_exchange_protocol/Cargo.toml index 13dbc57..2cec95f 100644 --- a/gday_contact_exchange_protocol/Cargo.toml +++ b/gday_contact_exchange_protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday_contact_exchange_protocol" -version = "0.1.1" +version = "0.2.0" description = "Protocol for peers to exchange their socket addresses via a server." homepage = "https://github.com/manforowicz/gday/tree/main/gday_contact_exchange_protocol" categories = ["network-programming"] diff --git a/gday_encryption/Cargo.toml b/gday_encryption/Cargo.toml index 9b79700..80aeb78 100644 --- a/gday_encryption/Cargo.toml +++ b/gday_encryption/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday_encryption" -version = "0.1.1" +version = "0.2.0" description = "Simple encrypted ChaCha20Poly1305 wrapper around an IO stream." homepage = "https://github.com/manforowicz/gday/tree/main/gday_encryption" categories = ["cryptography"] diff --git a/gday_file_transfer/Cargo.toml b/gday_file_transfer/Cargo.toml index 154c8d1..8a9be5b 100644 --- a/gday_file_transfer/Cargo.toml +++ b/gday_file_transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday_file_transfer" -version = "0.1.1" +version = "0.2.0" description = "Protocol to securely transfer files over an encrypted IO stream." homepage = "https://github.com/manforowicz/gday/tree/main/gday_file_transfer" categories = ["network-programming"] diff --git a/gday_hole_punch/Cargo.toml b/gday_hole_punch/Cargo.toml index 8a55b0f..32775a8 100644 --- a/gday_hole_punch/Cargo.toml +++ b/gday_hole_punch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday_hole_punch" -version = "0.1.1" +version = "0.2.0" description = "Securely connect to a peer using TCP hole-punching." homepage = "https://github.com/manforowicz/gday/tree/main/gday_hole_punch" categories = ["network-programming"] @@ -15,7 +15,7 @@ repository.workspace = true [dependencies] blake3 = "1.5.1" -gday_contact_exchange_protocol = { version = "^0.1.1", path = "../gday_contact_exchange_protocol" } +gday_contact_exchange_protocol = { version = "^0.2.0", path = "../gday_contact_exchange_protocol" } log = "0.4.22" rand = "0.8.5" rustls = { version = "0.23.10", features = ["ring", "log", "logging", "std", "tls12"], default-features = false } diff --git a/gday_server/Cargo.toml b/gday_server/Cargo.toml index 84b624a..1824e04 100644 --- a/gday_server/Cargo.toml +++ b/gday_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gday_server" -version = "0.1.1" +version = "0.2.0" description = "Server that lets 2 peers exchange their socket addresses." homepage = "https://github.com/manforowicz/gday/tree/main/gday_server" categories = ["command-line-utilities"] @@ -24,7 +24,7 @@ tokio = { version = "1.38.0", features = [ "sync", ] } tokio-rustls = { version = "0.26.0", features = ["ring", "logging", "tls12"], default-features = false } -gday_contact_exchange_protocol = { version = "0.1.1", path = "../gday_contact_exchange_protocol" } +gday_contact_exchange_protocol = { version = "0.2.0", path = "../gday_contact_exchange_protocol" } thiserror = "1.0.61" log = "0.4.22" env_logger = "0.11.3"