Update dependencies

This commit is contained in:
Igor Katson 2023-11-16 07:36:06 +00:00
parent 0cd9981f62
commit 62ed868208
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
6 changed files with 361 additions and 413 deletions

737
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-dht"
version = "2.2.1"
version = "2.2.2"
edition = "2018"
description = "DHT implementation, used in rqbit torrent client."
license = "Apache-2.0"
@ -26,11 +26,11 @@ bencode = {path = "../bencode", default-features=false, package="librqbit-bencod
anyhow = "1"
parking_lot = "0.12"
log = "0.4"
pretty_env_logger = "0.4"
pretty_env_logger = "0.5"
futures = "0.3"
rand = "0.8"
indexmap = "1.7"
directories = "4"
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"}

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit"
version = "2.2.1"
version = "2.2.2"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2018"
description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it."
@ -22,11 +22,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.1"}
librqbit-core = {path = "../librqbit_core", version = "2.2.2"}
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.1"}
peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "2.2.2"}
sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"}
dht = {path = "../dht", package="librqbit-dht", version="2.2.1"}
dht = {path = "../dht", package="librqbit-dht", version="2.2.2"}
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
axum = {version = "0.6"}
@ -35,10 +35,9 @@ serde = {version = "1", features=["derive"]}
serde_json = "1"
serde_urlencoded = "0.7"
anyhow = "1"
http = "0.2"
regex = "1"
reqwest = {version="0.11", default-features=false}
reqwest = {version="0.11.22", default-features=false}
urlencoding = "2"
byteorder = "1"
bincode = "1"
@ -59,4 +58,4 @@ hex = "0.4"
[dev-dependencies]
futures = {version = "0.3"}
pretty_env_logger = "0.4"
pretty_env_logger = "0.5"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-core"
version = "2.2.1"
version = "2.2.2"
edition = "2018"
description = "Important utilities used throughout librqbit useful for working with torrents."
license = "Apache-2.0"
@ -27,4 +27,4 @@ serde = {version = "1", features=["derive"]}
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"}
itertools = "0.11.0"
itertools = "0.12"

View file

@ -1,6 +1,6 @@
[package]
name = "librqbit-peer-protocol"
version = "2.2.1"
version = "2.2.2"
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.1"}
librqbit-core = {path="../librqbit_core", version = "2.2.2"}
bitvec = "1"
anyhow = "1"

View file

@ -1,6 +1,6 @@
[package]
name = "rqbit"
version = "2.2.1"
version = "2.2.2"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2018"
description = "A bittorrent command line client and server."
@ -20,13 +20,13 @@ default-tls = ["librqbit/default-tls"]
rust-tls = ["librqbit/rust-tls"]
[dependencies]
librqbit = {path="../librqbit", default-features=false, version = "2.2.1"}
dht = {path="../dht", package="librqbit-dht", version="2.2.1"}
librqbit = {path="../librqbit", default-features=false, version = "2.2.2"}
dht = {path="../dht", package="librqbit-dht", version="2.2.2"}
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
anyhow = "1"
clap = {version = "4", features = ["derive", "deprecated"]}
log = "0.4"
pretty_env_logger = "0.4"
pretty_env_logger = "0.5"
regex = "1"
futures = "0.3"
parse_duration = "2"