diff --git a/Cargo.lock b/Cargo.lock index b5be784..6b7eae7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -830,7 +830,7 @@ dependencies = [ [[package]] name = "librqbit" -version = "2.2.2" +version = "3.0.0-beta.0" dependencies = [ "anyhow", "axum", @@ -894,7 +894,7 @@ version = "2.2.1" [[package]] name = "librqbit-core" -version = "2.2.2" +version = "3.0.0" dependencies = [ "anyhow", "hex 0.4.3", @@ -910,7 +910,7 @@ dependencies = [ [[package]] name = "librqbit-dht" -version = "2.2.2" +version = "3.0.0" dependencies = [ "anyhow", "directories", @@ -932,7 +932,7 @@ dependencies = [ [[package]] name = "librqbit-peer-protocol" -version = "2.2.2" +version = "3.0.0" dependencies = [ "anyhow", "bincode", @@ -1483,7 +1483,7 @@ dependencies = [ [[package]] name = "rqbit" -version = "2.2.2" +version = "3.0.0-beta.0" dependencies = [ "anyhow", "clap", diff --git a/crates/dht/Cargo.toml b/crates/dht/Cargo.toml index 5c40a64..b2f2240 100644 --- a/crates/dht/Cargo.toml +++ b/crates/dht/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit-dht" -version = "2.2.2" +version = "3.0.0" edition = "2018" description = "DHT implementation, used in rqbit torrent client." license = "Apache-2.0" @@ -32,7 +32,7 @@ indexmap = "2" directories = "5" clone_to_owned = {path="../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"} -librqbit-core = {path="../librqbit_core", version = "2.2.1"} +librqbit-core = {path="../librqbit_core", version = "3.0.0"} [dev-dependencies] tracing-subscriber = "0.3" \ No newline at end of file diff --git a/crates/librqbit/Cargo.toml b/crates/librqbit/Cargo.toml index 4095553..46c1c15 100644 --- a/crates/librqbit/Cargo.toml +++ b/crates/librqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit" -version = "2.2.2" +version = "3.0.0-beta.0" authors = ["Igor Katson "] edition = "2018" description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it." @@ -23,11 +23,11 @@ rust-tls = ["reqwest/rustls-tls"] [dependencies] bencode = {path = "../bencode", default-features=false, package="librqbit-bencode", version="2.2.1"} buffers = {path = "../buffers", package="librqbit-buffers", version = "2.2.1"} -librqbit-core = {path = "../librqbit_core", version = "2.2.2"} +librqbit-core = {path = "../librqbit_core", version = "3.0.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 = "2.2.2"} +peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.0.0"} sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"} -dht = {path = "../dht", package="librqbit-dht", version="2.2.2"} +dht = {path = "../dht", package="librqbit-dht", version="3.0.0"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} axum = {version = "0.6"} diff --git a/crates/librqbit_core/Cargo.toml b/crates/librqbit_core/Cargo.toml index d3f0965..0c10aba 100644 --- a/crates/librqbit_core/Cargo.toml +++ b/crates/librqbit_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit-core" -version = "2.2.2" +version = "3.0.0" edition = "2018" description = "Important utilities used throughout librqbit useful for working with torrents." license = "Apache-2.0" diff --git a/crates/peer_binary_protocol/Cargo.toml b/crates/peer_binary_protocol/Cargo.toml index 0beada2..32f3244 100644 --- a/crates/peer_binary_protocol/Cargo.toml +++ b/crates/peer_binary_protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit-peer-protocol" -version = "2.2.2" +version = "3.0.0" edition = "2018" description = "Protocol for working with torrent peers. Used in rqbit torrent client." license = "Apache-2.0" @@ -23,6 +23,6 @@ byteorder = "1" buffers = {path="../buffers", package="librqbit-buffers", version = "2.2.1"} bencode = {path = "../bencode", default-features=false, package="librqbit-bencode", version="2.2.1"} clone_to_owned = {path="../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"} -librqbit-core = {path="../librqbit_core", version = "2.2.2"} +librqbit-core = {path="../librqbit_core", version = "3.0.0"} bitvec = "1" anyhow = "1" \ No newline at end of file diff --git a/crates/rqbit/Cargo.toml b/crates/rqbit/Cargo.toml index eaf40ba..eea95d7 100644 --- a/crates/rqbit/Cargo.toml +++ b/crates/rqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rqbit" -version = "2.2.2" +version = "3.0.0-beta.0" authors = ["Igor Katson "] edition = "2018" description = "A bittorrent command line client and server." @@ -21,8 +21,8 @@ default-tls = ["librqbit/default-tls"] rust-tls = ["librqbit/rust-tls"] [dependencies] -librqbit = {path="../librqbit", default-features=false, version = "2.2.2"} -dht = {path="../dht", package="librqbit-dht", version="2.2.2"} +librqbit = {path="../librqbit", default-features=false, version = "3.0.0-beta.0"} +dht = {path="../dht", package="librqbit-dht", version="3.0.0"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} anyhow = "1" clap = {version = "4", features = ["derive", "deprecated"]}