Updated and fixed dependencies
This commit is contained in:
parent
78c93f3c20
commit
1173360265
File diff suppressed because it is too large
Load Diff
43
Cargo.toml
43
Cargo.toml
|
@ -7,17 +7,17 @@ license = "AGPL-3.0-only"
|
|||
|
||||
[workspace]
|
||||
members = [
|
||||
".",
|
||||
"ext_activity_streams",
|
||||
"ext_federation",
|
||||
"ext_nodeinfo",
|
||||
"ext_webfinger",
|
||||
"ext_model",
|
||||
"fe_calckey",
|
||||
"magnetar_common",
|
||||
"magnetar_sdk",
|
||||
"magnetar_mmm_parser",
|
||||
"core",
|
||||
".",
|
||||
"ext_activity_streams",
|
||||
"ext_federation",
|
||||
"ext_nodeinfo",
|
||||
"ext_webfinger",
|
||||
"ext_model",
|
||||
"fe_calckey",
|
||||
"magnetar_common",
|
||||
"magnetar_sdk",
|
||||
"magnetar_mmm_parser",
|
||||
"core",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
|
@ -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"
|
||||
|
|
|
@ -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"] }
|
||||
|
|
Loading…
Reference in New Issue