Skip to content

Commit

Permalink
update v0.38.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Oct 5, 2022
1 parent 596fed4 commit 14d7b5e
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 36 deletions.
51 changes: 22 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5" }
ui = { path = "../ui" }
networking = { path = "../networking" }
p2p_chess_channel = { path = "../channel" }
Expand Down
2 changes: 1 addition & 1 deletion channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"

[dependencies]
# TODO: Just needed for CommsPublicKey
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3"}
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5"}

tokio = { version = "1", default-features = false, features = ["sync"] }
8 changes: 4 additions & 4 deletions networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3"}
tari_comms_dht = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3", features=["bundled-sqlite"] }
tari_storage = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3" }
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5"}
tari_comms_dht = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5", features=["bundled-sqlite"] }
tari_storage = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.15.4" }
p2p_chess_channel = { path = "../channel" }

Expand Down
1 change: 1 addition & 0 deletions networking/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ impl Networking {
OutboundEncryption::EncryptFor(Box::new(public_key.clone())),
vec![],
OutboundDomainMessage::new(&num, msg.clone()),
String::new(),
)
.await?;

Expand Down
2 changes: 1 addition & 1 deletion ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.3" }
tari_comms = { git = "https://github.com/tari-project/tari.git", tag = "v0.38.5" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.15.4" }
p2p_chess_channel = { path = "../channel" }

Expand Down

0 comments on commit 14d7b5e

Please sign in to comment.