Skip to content

Commit

Permalink
Merge d03b9f2 into 0a930cd
Browse files Browse the repository at this point in the history
  • Loading branch information
kpp committed Dec 27, 2020
2 parents 0a930cd + d03b9f2 commit 63bf9a8
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.1.1 (Dec 27, 2020)

* Code cleanup (#441, #442)
* Implement k-tree with force-k modification (#436, #443)

# 0.1.0 (Oct 7, 2020)

* Replace `parking_lot` mutex with `futures` mutex (#434)
Expand Down
8 changes: 4 additions & 4 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ publish = false
edition = "2018"

[dev-dependencies]
tox_binary_io = { version = "0.1.0", path = "../tox_binary_io", features = ["sodium"] }
tox_crypto = { version = "0.1.0", path = "../tox_crypto" }
tox_packet = { version = "0.1.0", path = "../tox_packet" }
tox_core = { version = "0.1.0", path = "../tox_core" }
tox_binary_io = { version = "0.1.1", path = "../tox_binary_io", features = ["sodium"] }
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }
tox_packet = { version = "0.1.1", path = "../tox_packet" }
tox_core = { version = "0.1.1", path = "../tox_core" }

log = "0.4"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
Expand Down
2 changes: 1 addition & 1 deletion tox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand Down
2 changes: 1 addition & 1 deletion tox_binary_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_binary_io"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand Down
8 changes: 4 additions & 4 deletions tox_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_core"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand All @@ -17,9 +17,9 @@ license = "GPL-3.0+"
edition = "2018"

[dependencies]
tox_binary_io = { version = "0.1.0", path = "../tox_binary_io" }
tox_crypto = { version = "0.1.0", path = "../tox_crypto" }
tox_packet = { version = "0.1.0", path = "../tox_packet" }
tox_binary_io = { version = "0.1.1", path = "../tox_binary_io" }
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }
tox_packet = { version = "0.1.1", path = "../tox_packet" }

bytes = "0.5"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
Expand Down
2 changes: 1 addition & 1 deletion tox_core/src/dht/server_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ mod tests {

futures::select! {
res = client_future.fuse() => res.unwrap(),
res = server_future.fuse() => (),
_ = server_future.fuse() => (),
};
}
}
2 changes: 1 addition & 1 deletion tox_crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_crypto"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand Down
2 changes: 1 addition & 1 deletion tox_encryptsave/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_encryptsave"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand Down
2 changes: 1 addition & 1 deletion tox_packet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tox_packet"
version = "0.1.0"
version = "0.1.1"
authors = [
"Zetok Zalbavar <zetok@openmailbox.org>",
"Roman Proskuryakov <humbug@deeptown.org>",
Expand Down

0 comments on commit 63bf9a8

Please sign in to comment.