Update all subcrates versions

This commit is contained in:
Igor Katson 2025-06-05 11:52:50 +01:00
parent 68a85ab41b
commit 9b5b9e6ba7
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
11 changed files with 26 additions and 26 deletions

18
Cargo.lock generated
View file

@ -2794,7 +2794,7 @@ dependencies = [
[[package]]
name = "librqbit"
version = "8.0.0"
version = "8.1.0"
dependencies = [
"anyhow",
"arc-swap",
@ -2860,7 +2860,7 @@ dependencies = [
[[package]]
name = "librqbit-bencode"
version = "3.0.2"
version = "3.1.0"
dependencies = [
"anyhow",
"bytes",
@ -2881,7 +2881,7 @@ dependencies = [
[[package]]
name = "librqbit-clone-to-owned"
version = "3.0.0"
version = "3.0.1"
dependencies = [
"bytes",
]
@ -2912,7 +2912,7 @@ dependencies = [
[[package]]
name = "librqbit-dht"
version = "5.2.0"
version = "5.3.0"
dependencies = [
"anyhow",
"backoff",
@ -2940,7 +2940,7 @@ dependencies = [
[[package]]
name = "librqbit-peer-protocol"
version = "4.2.0"
version = "4.3.0"
dependencies = [
"anyhow",
"bincode 1.3.3",
@ -2966,7 +2966,7 @@ dependencies = [
[[package]]
name = "librqbit-tracker-comms"
version = "2.1.0"
version = "3.0.0"
dependencies = [
"anyhow",
"async-stream",
@ -3006,7 +3006,7 @@ dependencies = [
[[package]]
name = "librqbit-upnp-serve"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"anyhow",
"axum 0.8.4",
@ -4606,7 +4606,7 @@ dependencies = [
[[package]]
name = "rqbit"
version = "8.0.0"
version = "8.1.0"
dependencies = [
"anyhow",
"bytes",
@ -4635,7 +4635,7 @@ dependencies = [
[[package]]
name = "rqbit-desktop"
version = "8.0.0"
version = "8.1.0"
dependencies = [
"anyhow",
"base64 0.22.1",

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-bencode"
version = "3.0.2"
version = "3.1.0"
edition = "2021"
description = "Bencode serialization and deserialization using Serde"
license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-clone-to-owned"
version = "3.0.0"
version = "3.0.1"
edition = "2021"
description = "Util traits to represent something that can be made owned and change type at the same time."
license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-dht"
version = "5.2.0"
version = "5.3.0"
edition = "2021"
description = "DHT implementation, used in rqbit torrent client."
license = "Apache-2.0"
@ -28,7 +28,7 @@ serde = { version = "1", features = ["derive"] }
leaky-bucket = "1.1"
serde_json = "1"
hex = "0.4"
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.1" }
anyhow = "1"
parking_lot = "0.12"
tracing = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit"
version = "8.0.0"
version = "8.1.0"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021"
description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it."
@ -49,14 +49,14 @@ sqlx = { version = "0.8", features = [
], default-features = false, optional = true }
home = { version = "0.5", optional = true }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" }
tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "2.1" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.1" }
tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "3" }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "5" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
peer_binary_protocol = { path = "../peer_binary_protocol", default-features = false, package = "librqbit-peer-protocol", version = "4.2" }
peer_binary_protocol = { path = "../peer_binary_protocol", default-features = false, package = "librqbit-peer-protocol", version = "4.3" }
sha1w = { path = "../sha1w", default-features = false, package = "librqbit-sha1-wrapper", version = "4.1" }
dht = { path = "../dht", package = "librqbit-dht", default-features = false, version = "5.2.0" }
dht = { path = "../dht", package = "librqbit-dht", default-features = false, version = "5.3.0" }
librqbit-upnp = { path = "../upnp", version = "1" }
upnp-serve = { path = "../upnp-serve", package = "librqbit-upnp-serve", default-features = false, version = "1", optional = true }

View file

@ -24,7 +24,7 @@ rand = "0.9"
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.0.1" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.1" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
itertools = "0.14"
directories = "6"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-peer-protocol"
version = "4.2.0"
version = "4.3.0"
edition = "2021"
description = "Protocol for working with torrent peers. Used in rqbit torrent client."
license = "Apache-2.0"
@ -22,7 +22,7 @@ serde = { version = "1", features = ["derive"] }
bincode = "1"
byteorder = "1"
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.1" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "5" }
bitvec = "1"

View file

@ -1,6 +1,6 @@
[package]
name = "rqbit"
version = "8.0.0"
version = "8.1.0"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021"
description = "A bittorrent command line client and server."

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-tracker-comms"
version = "2.1.0"
version = "3.0.0"
edition = "2018"
description = "Common interface around various sha1 implementations used in rqbit torrent client."
license = "Apache-2.0"
@ -30,7 +30,7 @@ urlencoding = "2"
rand = "0.9"
tracing = "0.1.40"
reqwest = { version = "0.12", default-features = false, features = ["json"] }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.1" }
url = { version = "2", default-features = false }
parking_lot = "0.12.3"
tokio-util = "0.7.13"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-upnp-serve"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "Simple UPnP MediaServer implementation"
license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "rqbit-desktop"
version = "8.0.0"
version = "8.1.0"
description = "rqbit torrent client"
authors = ["you"]
license = ""