Update subcrates and versions

This commit is contained in:
Igor Katson 2025-01-06 15:27:44 +00:00
parent b9f949c6c1
commit 7864876087
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
12 changed files with 41 additions and 41 deletions

22
Cargo.lock generated
View file

@ -2614,7 +2614,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit" name = "librqbit"
version = "7.1.0-beta.1" version = "8.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -2677,7 +2677,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-bencode" name = "librqbit-bencode"
version = "3.0.1" version = "3.0.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bytes", "bytes",
@ -2689,7 +2689,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-buffers" name = "librqbit-buffers"
version = "4.1.0" version = "4.2.0"
dependencies = [ dependencies = [
"bytes", "bytes",
"librqbit-clone-to-owned", "librqbit-clone-to-owned",
@ -2705,7 +2705,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-core" name = "librqbit-core"
version = "4.0.1" version = "4.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cfg", "assert_cfg",
@ -2729,7 +2729,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-dht" name = "librqbit-dht"
version = "5.1.0" version = "5.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"backoff", "backoff",
@ -2757,7 +2757,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-peer-protocol" name = "librqbit-peer-protocol"
version = "4.1.0" version = "4.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",
@ -2774,7 +2774,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-sha1-wrapper" name = "librqbit-sha1-wrapper"
version = "4.0.0" version = "4.1.0"
dependencies = [ dependencies = [
"assert_cfg", "assert_cfg",
"aws-lc-rs", "aws-lc-rs",
@ -2783,7 +2783,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-tracker-comms" name = "librqbit-tracker-comms"
version = "2.0.0" version = "2.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-stream", "async-stream",
@ -2803,7 +2803,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-upnp" name = "librqbit-upnp"
version = "0.1.1" version = "1.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bstr", "bstr",
@ -2821,7 +2821,7 @@ dependencies = [
[[package]] [[package]]
name = "librqbit-upnp-serve" name = "librqbit-upnp-serve"
version = "0.1.0" version = "1.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum", "axum",
@ -4422,7 +4422,7 @@ dependencies = [
[[package]] [[package]]
name = "rqbit" name = "rqbit"
version = "7.1.0-beta.1" version = "8.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bytes", "bytes",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-bencode" name = "librqbit-bencode"
version = "3.0.1" version = "3.0.2"
edition = "2021" edition = "2021"
description = "Bencode serialization and deserialization using Serde" description = "Bencode serialization and deserialization using Serde"
license = "Apache-2.0" license = "Apache-2.0"
@ -16,8 +16,8 @@ sha1-ring = ["sha1w/sha1-ring"]
[dependencies] [dependencies]
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4" } buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" } clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
anyhow = "1" anyhow = "1"
sha1w = { path = "../sha1w", default-features = false, optional = true, package = "librqbit-sha1-wrapper", version = "4" } sha1w = { path = "../sha1w", default-features = false, optional = true, package = "librqbit-sha1-wrapper", version = "4.1" }
bytes = "1.7.1" bytes = "1.7.1"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-buffers" name = "librqbit-buffers"
version = "4.1.0" version = "4.2.0"
edition = "2021" edition = "2021"
description = "Utils to work with &[u8] and Vec<u8> in librqbit source code." description = "Utils to work with &[u8] and Vec<u8> in librqbit source code."
license = "Apache-2.0" license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-dht" name = "librqbit-dht"
version = "5.1.0" version = "5.2.0"
edition = "2021" edition = "2021"
description = "DHT implementation, used in rqbit torrent client." description = "DHT implementation, used in rqbit torrent client."
license = "Apache-2.0" license = "Apache-2.0"
@ -32,7 +32,7 @@ rand = "0.8"
indexmap = "2" indexmap = "2"
dashmap = { version = "6", features = ["serde"] } dashmap = { version = "6", features = ["serde"] }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" } clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "4" } librqbit-core = { path = "../librqbit_core", default-features = false, version = "4.1" }
chrono = { version = "0.4.31", features = ["serde"] } chrono = { version = "0.4.31", features = ["serde"] }
tokio-util = "0.7.10" tokio-util = "0.7.10"
bytes = "1.7.1" bytes = "1.7.1"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit" name = "librqbit"
version = "7.1.0-beta.1" version = "8.0.0"
authors = ["Igor Katson <igor.katson@gmail.com>"] authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021" edition = "2021"
description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it." description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it."
@ -45,15 +45,15 @@ sqlx = { version = "0.8.2", features = [
"postgres", "postgres",
], optional = true } ], optional = true }
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3" } 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" } tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "2.1" }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.1" } buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "4" } librqbit-core = { path = "../librqbit_core", default-features = false, version = "4.1" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" } 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.1" } peer_binary_protocol = { path = "../peer_binary_protocol", default-features = false, package = "librqbit-peer-protocol", version = "4.1" }
sha1w = { path = "../sha1w", default-features = false, package = "librqbit-sha1-wrapper", version = "4" } sha1w = { path = "../sha1w", default-features = false, package = "librqbit-sha1-wrapper", version = "4.1" }
dht = { path = "../dht", package = "librqbit-dht", version = "5.1.0" } dht = { path = "../dht", package = "librqbit-dht", version = "5.2.0" }
librqbit-upnp = { path = "../upnp", version = "0.1.1" } librqbit-upnp = { path = "../upnp", version = "1" }
upnp-serve = { path = "../upnp-serve", package = "librqbit-upnp-serve", default-features = false, version = "0.1.0", optional = true } upnp-serve = { path = "../upnp-serve", package = "librqbit-upnp-serve", default-features = false, version = "1", optional = true }
tokio = { version = "1", features = [ tokio = { version = "1", features = [
"macros", "macros",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-core" name = "librqbit-core"
version = "4.0.1" version = "4.1.0"
edition = "2021" edition = "2021"
description = "Important utilities used throughout librqbit useful for working with torrents." description = "Important utilities used throughout librqbit useful for working with torrents."
license = "Apache-2.0" license = "Apache-2.0"
@ -23,7 +23,7 @@ url = { version = "2", default-features = false }
uuid = { version = "1", features = ["v4"] } uuid = { version = "1", features = ["v4"] }
parking_lot = "0.12" parking_lot = "0.12"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4" } 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.0.1" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" } clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
itertools = "0.13" itertools = "0.13"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-peer-protocol" name = "librqbit-peer-protocol"
version = "4.1.0" version = "4.2.0"
edition = "2021" edition = "2021"
description = "Protocol for working with torrent peers. Used in rqbit torrent client." description = "Protocol for working with torrent peers. Used in rqbit torrent client."
license = "Apache-2.0" license = "Apache-2.0"
@ -13,10 +13,10 @@ readme = "README.md"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
bincode = "1" bincode = "1"
byteorder = "1" byteorder = "1"
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.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" }
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" } clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "4" } librqbit-core = { path = "../librqbit_core", default-features = false, version = "4.1" }
bitvec = "1" bitvec = "1"
anyhow = "1" anyhow = "1"
bytes = "1.7.1" bytes = "1.7.1"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rqbit" name = "rqbit"
version = "7.1.0-beta.1" version = "8.0.0"
authors = ["Igor Katson <igor.katson@gmail.com>"] authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021" edition = "2021"
description = "A bittorrent command line client and server." description = "A bittorrent command line client and server."
@ -24,7 +24,7 @@ postgres = ["librqbit/postgres"]
disable-upload = ["librqbit/disable-upload"] disable-upload = ["librqbit/disable-upload"]
[dependencies] [dependencies]
librqbit = { version = "7.1.0-beta.0", path = "../librqbit", default-features = false, features = [ librqbit = { version = "8.0.0", path = "../librqbit", default-features = false, features = [
"http-api", "http-api",
"tracing-subscriber-utils", "tracing-subscriber-utils",
"upnp-serve-adapter", "upnp-serve-adapter",
@ -46,7 +46,7 @@ serde_json = "1"
size_format = "1" size_format = "1"
bytes = "1.5.0" bytes = "1.5.0"
openssl = { version = "0.10", features = ["vendored"], optional = true } openssl = { version = "0.10", features = ["vendored"], optional = true }
upnp-serve = { path = "../upnp-serve", default-features = false, version = "0.1.0", package = "librqbit-upnp-serve" } upnp-serve = { path = "../upnp-serve", default-features = false, version = "1", package = "librqbit-upnp-serve" }
libc = "0.2.158" libc = "0.2.158"
signal-hook = "0.3.17" signal-hook = "0.3.17"
tokio-util = "0.7.11" tokio-util = "0.7.11"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-sha1-wrapper" name = "librqbit-sha1-wrapper"
version = "4.0.0" version = "4.1.0"
edition = "2018" edition = "2018"
description = "Common interface around various sha1 implementations used in rqbit torrent client." description = "Common interface around various sha1 implementations used in rqbit torrent client."
license = "Apache-2.0" license = "Apache-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-tracker-comms" name = "librqbit-tracker-comms"
version = "2.0.0" version = "2.1.0"
edition = "2018" edition = "2018"
description = "Common interface around various sha1 implementations used in rqbit torrent client." description = "Common interface around various sha1 implementations used in rqbit torrent client."
license = "Apache-2.0" license = "Apache-2.0"
@ -15,8 +15,8 @@ tokio = "1"
anyhow = "1" anyhow = "1"
futures = "0.3" futures = "0.3"
async-stream = "0.3.5" async-stream = "0.3.5"
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4" } buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
librqbit-core = { path = "../librqbit_core", default-features = false, version = "4" } librqbit-core = { path = "../librqbit_core", default-features = false, version = "4.1" }
byteorder = "1.5" byteorder = "1.5"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
urlencoding = "2" urlencoding = "2"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-upnp-serve" name = "librqbit-upnp-serve"
version = "0.1.0" version = "1.0.0"
edition = "2021" edition = "2021"
description = "Simple UPnP MediaServer implementation" description = "Simple UPnP MediaServer implementation"
license = "Apache-2.0" license = "Apache-2.0"
@ -26,10 +26,10 @@ serde = { version = "1", features = ["derive"] }
http = "1.1.0" http = "1.1.0"
httparse = "1.9.4" httparse = "1.9.4"
uuid = { version = "1.10.0", features = ["v4"] } uuid = { version = "1.10.0", features = ["v4"] }
librqbit-upnp = { version = "0.1", path = "../upnp", default-features = false } librqbit-upnp = { version = "1", path = "../upnp", default-features = false }
gethostname = "0.5.0" gethostname = "0.5.0"
librqbit-sha1-wrapper = { path = "../sha1w", version = "4", default-features = false } librqbit-sha1-wrapper = { path = "../sha1w", version = "4", default-features = false }
librqbit-core = { version = "4", path = "../librqbit_core", default-features = false } librqbit-core = { version = "4.1", path = "../librqbit_core", default-features = false }
mime_guess = "2.0.5" mime_guess = "2.0.5"
url = { version = "2", default-features = false } url = { version = "2", default-features = false }
parking_lot = "0.12.3" parking_lot = "0.12.3"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "librqbit-upnp" name = "librqbit-upnp"
version = "0.1.1" version = "1.0.0"
authors = ["Igor Katson <igor.katson@gmail.com>"] authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2021" edition = "2021"
description = "Library used by rqbit torrent client to lease port forwards on the router." description = "Library used by rqbit torrent client to lease port forwards on the router."