Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.1.1 (Dec 27, 2020)

* Fix bug in k-bucket eviction (#443)
* Code cleanup (#441, #442)
* Implement k-tree with force-k modification (#436)

# 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
3 changes: 2 additions & 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 Expand Up @@ -33,3 +33,4 @@ maintenance = { status = "actively-developed" }
tox_packet = { version = "0.1.0", path = "../tox_packet" }
tox_core = { version = "0.1.0", path = "../tox_core" }
tox_encryptsave = { version = "0.1.0", path = "../tox_encryptsave" }
tox_crypto = { version = "0.1.1", path = "../tox_crypto" }
1 change: 1 addition & 0 deletions tox/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

pub use tox_packet as packet;
pub use tox_core as core;
pub use tox_crypto as crypto;
pub use tox_encryptsave as encryptsave;
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() => (),
res = server_future.fuse() => res.unwrap(),
};
}
}
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