Update subcrates

This commit is contained in:
Igor Katson 2024-04-07 13:41:29 +04:00
parent 81d2301e20
commit 7ec76fc5d4
6 changed files with 15 additions and 15 deletions

8
Cargo.lock generated
View file

@ -1337,7 +1337,7 @@ version = "2.2.1"
[[package]]
name = "librqbit-core"
version = "3.6.2"
version = "3.7.0"
dependencies = [
"anyhow",
"directories",
@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "librqbit-dht"
version = "5.0.2"
version = "5.0.3"
dependencies = [
"anyhow",
"backoff",
@ -1384,7 +1384,7 @@ dependencies = [
[[package]]
name = "librqbit-peer-protocol"
version = "3.5.1"
version = "3.5.2"
dependencies = [
"anyhow",
"bincode",
@ -1406,7 +1406,7 @@ dependencies = [
[[package]]
name = "librqbit-tracker-comms"
version = "1.0.1"
version = "1.0.2"
dependencies = [
"anyhow",
"async-stream",

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-dht"
version = "5.0.2"
version = "5.0.3"
edition = "2021"
description = "DHT implementation, used in rqbit torrent client."
license = "Apache-2.0"
@ -32,7 +32,7 @@ rand = "0.8"
indexmap = "2"
dashmap = { version = "5.5.3", features = ["serde"] }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "2.2.1" }
librqbit-core = { path = "../librqbit_core", version = "3.6.2" }
librqbit-core = { path = "../librqbit_core", version = "3.7.0" }
chrono = { version = "0.4.31", features = ["serde"] }
tokio-util = "0.7.10"

View file

@ -20,13 +20,13 @@ rust-tls = ["reqwest/rustls-tls"]
[dependencies]
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "2.2.2" }
tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "1.0.1" }
tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "1.0.2" }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "3.0.0" }
librqbit-core = { path = "../librqbit_core", version = "3.6.2" }
librqbit-core = { path = "../librqbit_core", version = "3.7.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.5.1" }
peer_binary_protocol = { path = "../peer_binary_protocol", package = "librqbit-peer-protocol", version = "3.5.2" }
sha1w = { path = "../sha1w", default-features = false, package = "librqbit-sha1-wrapper", version = "3.0.0" }
dht = { path = "../dht", package = "librqbit-dht", version = "5.0.2" }
dht = { path = "../dht", package = "librqbit-dht", version = "5.0.3" }
librqbit-upnp = { path = "../upnp", version = "0.1.0" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-core"
version = "3.6.2"
version = "3.7.0"
edition = "2021"
description = "Important utilities used throughout librqbit useful for working with torrents."
license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-peer-protocol"
version = "3.5.1"
version = "3.5.2"
edition = "2021"
description = "Protocol for working with torrent peers. Used in rqbit torrent client."
license = "Apache-2.0"
@ -17,6 +17,6 @@ byteorder = "1"
buffers = { path = "../buffers", package = "librqbit-buffers", version = "3.0.0" }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "2.2.2" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "2.2.1" }
librqbit-core = { path = "../librqbit_core", version = "3.6.2" }
librqbit-core = { path = "../librqbit_core", version = "3.7.0" }
bitvec = "1"
anyhow = "1"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-tracker-comms"
version = "1.0.1"
version = "1.0.2"
edition = "2018"
description = "Common interface around various sha1 implementations used in rqbit torrent client."
license = "Apache-2.0"
@ -16,7 +16,7 @@ anyhow = "1"
futures = "0.3"
async-stream = "0.3.5"
buffers = { path = "../buffers", package = "librqbit-buffers", version = "3.0.0" }
librqbit-core = { path = "../librqbit_core", version = "3.6.2" }
librqbit-core = { path = "../librqbit_core", version = "3.7.0" }
byteorder = "1.5"
serde = { version = "1", features = ["derive"] }
urlencoding = "2"