diff --git a/Cargo.lock b/Cargo.lock index 45a2730..8e68a2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1054,7 +1054,7 @@ dependencies = [ [[package]] name = "librqbit" -version = "4.0.0-beta.0" +version = "4.0.0-beta.1" dependencies = [ "anyhow", "axum", @@ -1140,7 +1140,7 @@ dependencies = [ [[package]] name = "librqbit-dht" -version = "3.2.0" +version = "4.0.0-beta.1" dependencies = [ "anyhow", "backoff", @@ -1765,7 +1765,7 @@ dependencies = [ [[package]] name = "rqbit" -version = "4.0.0-beta.0" +version = "4.0.0-beta.1" dependencies = [ "anyhow", "clap", diff --git a/crates/dht/Cargo.toml b/crates/dht/Cargo.toml index ff6dfe6..9d8f3b4 100644 --- a/crates/dht/Cargo.toml +++ b/crates/dht/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit-dht" -version = "3.2.0" +version = "4.0.0-beta.1" edition = "2021" description = "DHT implementation, used in rqbit torrent client." license = "Apache-2.0" diff --git a/crates/librqbit/Cargo.toml b/crates/librqbit/Cargo.toml index 4093071..ca32546 100644 --- a/crates/librqbit/Cargo.toml +++ b/crates/librqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit" -version = "4.0.0-beta.0" +version = "4.0.0-beta.1" authors = ["Igor Katson "] edition = "2021" description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it." @@ -28,7 +28,7 @@ librqbit-core = {path = "../librqbit_core", version = "3.1.0"} clone_to_owned = {path = "../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"} peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.1.0"} sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"} -dht = {path = "../dht", package="librqbit-dht", version="3.2.0"} +dht = {path = "../dht", package="librqbit-dht", version="4.0.0-beta.1"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} axum = {version = "0.6"} diff --git a/crates/rqbit/Cargo.toml b/crates/rqbit/Cargo.toml index f879940..02511d1 100644 --- a/crates/rqbit/Cargo.toml +++ b/crates/rqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rqbit" -version = "4.0.0-beta.0" +version = "4.0.0-beta.1" authors = ["Igor Katson "] edition = "2021" description = "A bittorrent command line client and server." @@ -23,8 +23,8 @@ default-tls = ["librqbit/default-tls"] rust-tls = ["librqbit/rust-tls"] [dependencies] -librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.0"} -dht = {path="../dht", package="librqbit-dht", version="3.2.0"} +librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.1"} +dht = {path="../dht", package="librqbit-dht", version="4.0.0-beta.1"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} console-subscriber = {version = "0.2", optional = true} anyhow = "1"