Skip to content

Commit

Permalink
Updated versions of crates
Browse files Browse the repository at this point in the history
  • Loading branch information
manforowicz committed Jul 8, 2024
1 parent ad35d40 commit a223110
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions gday/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gday_contact_exchange_protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion gday_encryption/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion gday_file_transfer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions gday_hole_punch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions gday_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Expand Down

0 comments on commit a223110

Please sign in to comment.