mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Bump all dependencies but rustls and webpki-roots
The latter have changed their API a bit, while everything else is still compatible.
This commit is contained in:
parent
48f77acb69
commit
f725994fe0
4 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ license = "MPL-2.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
base64 = "0.21"
|
||||
base64 = "0.22"
|
||||
digest = "0.10"
|
||||
sha1 = "0.10"
|
||||
sha2 = "0.10"
|
||||
|
|
|
@ -20,7 +20,7 @@ scram = ["base64", "getrandom", "sha-1", "sha2", "hmac", "pbkdf2"]
|
|||
anonymous = ["getrandom"]
|
||||
|
||||
[dependencies]
|
||||
base64 = { version = "0.21", optional = true }
|
||||
base64 = { version = "0.22", optional = true }
|
||||
getrandom = { version = "0.2", optional = true }
|
||||
sha-1 = { version = "0.10", optional = true }
|
||||
sha2 = { version = "0.10", optional = true }
|
||||
|
|
|
@ -29,13 +29,13 @@ xmpp-parsers = { version = "0.20", path = "../parsers" }
|
|||
|
||||
# these are only needed for starttls ServerConnector support
|
||||
hickory-resolver = { version = "0.24", optional = true}
|
||||
idna = { version = "0.4", optional = true}
|
||||
idna = { version = "0.5", optional = true}
|
||||
native-tls = { version = "0.2", optional = true }
|
||||
tokio-native-tls = { version = "0.3", optional = true }
|
||||
tokio-rustls = { version = "0.24", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
|
||||
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
|
||||
# this is needed for echo-component example
|
||||
tokio-xmpp = { path = ".", features = ["insecure-tcp"]}
|
||||
|
||||
|
|
|
@ -18,13 +18,13 @@ chrono = "0.4"
|
|||
futures = "0.3"
|
||||
tokio = { version = "1", features = ["fs"] }
|
||||
log = "0.4"
|
||||
reqwest = { version = "0.11.8", features = ["stream"] }
|
||||
reqwest = { version = "0.12", features = ["stream"] }
|
||||
tokio-util = { version = "0.7", features = ["codec"] }
|
||||
# same repository dependencies
|
||||
tokio-xmpp = { version = "3.4", path = "../tokio-xmpp", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
|
||||
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
|
||||
|
||||
[[example]]
|
||||
name = "hello_bot"
|
||||
|
|
Loading…
Reference in a new issue