Update all subcrates versions
This commit is contained in:
parent
68a85ab41b
commit
9b5b9e6ba7
11 changed files with 26 additions and 26 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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."
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue