Updated and fixed dependencies

This commit is contained in:
Natty 2024-09-05 15:58:42 +02:00
parent 78c93f3c20
commit 1173360265
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
3 changed files with 1023 additions and 698 deletions

1676
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -30,31 +30,33 @@ async-stream = "0.3"
axum = "0.7"
axum-extra = "0.9"
base64 = "0.22"
cached = "0.47"
cached = "0.53"
cfg-if = "1"
chrono = "0.4"
compact_str = "0.7"
compact_str = "0.8"
dotenvy = "0.15"
ed25519-dalek = "2.1"
either = "1.9"
emojis = "0.6"
futures = "0.3"
futures-channel = "0.3"
futures-core = "0.3"
futures-util = "0.3"
headers = "0.4"
http = "1.0"
httpdate = "1"
hyper = "1.1"
idna = "0.5"
idna = "1"
indexmap = "2.2"
itertools = "0.12"
itertools = "0.13"
lru = "0.12"
miette = "5.9"
miette = "7"
nom = "7"
nom_locate = "4"
percent-encoding = "2.2"
quick-xml = "0.31"
redis = "0.24"
priority-queue = "2.0"
quick-xml = "0.36"
redis = "0.26"
regex = "1.9"
rsa = "0.9"
reqwest = "0.12"
@ -64,14 +66,15 @@ serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
sha2 = "0.10"
strum = "0.25"
smallvec = "1.13"
strum = "0.26"
tera = { version = "1", default-features = false }
thiserror = "1"
tokio = "1.24"
tokio-util = "0.7"
tokio-stream = "0.1"
toml = "0.8"
tower = "0.4"
tower = "0.5"
tower-http = "0.5"
tracing = "0.1"
tracing-subscriber = "0.3"

View File

@ -18,4 +18,4 @@ serde = { workspace = true, features = ["derive"] }
strum = { workspace = true, features = ["derive"] }
tracing = { workspace = true }
unicode-segmentation = { workspace = true }
quick-xml = { workspace = "true", optional = true, features = ["serialize"] }
quick-xml = { workspace = true, optional = true, features = ["serialize"] }