update deps
This commit is contained in:
parent
cf6602ea2e
commit
e50cf785a1
2 changed files with 27 additions and 25 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
edition="2021"
|
edition = "2021"
|
||||||
imports_layout="HorizontalVertical"
|
imports_layout = "HorizontalVertical"
|
||||||
imports_granularity="Crate"
|
imports_granularity = "Crate"
|
||||||
reorder_imports=true
|
reorder_imports = true
|
||||||
|
|
|
||||||
44
Cargo.toml
44
Cargo.toml
|
|
@ -31,27 +31,27 @@ redundant_closure_for_method_calls = "deny"
|
||||||
unwrap_used = "deny"
|
unwrap_used = "deny"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4.39", features = ["clock"], default-features = false }
|
chrono = { version = "0.4.41", features = ["clock"], default-features = false }
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.219", features = ["derive"] }
|
||||||
async-trait = "0.1.85"
|
async-trait = "0.1.88"
|
||||||
url = { version = "2.5.4", features = ["serde"] }
|
url = { version = "2.5.4", features = ["serde"] }
|
||||||
serde_json = { version = "1.0.137", features = ["preserve_order"] }
|
serde_json = { version = "1.0.140", features = ["preserve_order"] }
|
||||||
reqwest = { version = "0.12.12", default-features = false, features = [
|
reqwest = { version = "0.12.15", default-features = false, features = [
|
||||||
"json",
|
"json",
|
||||||
"stream",
|
"stream",
|
||||||
"rustls-tls",
|
"rustls-tls",
|
||||||
] }
|
] }
|
||||||
reqwest-middleware = "0.4.0"
|
reqwest-middleware = "0.4.2"
|
||||||
tracing = "0.1.41"
|
tracing = "0.1.41"
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
rsa = "0.9.7"
|
rsa = "0.9.8"
|
||||||
http = "1.2.0"
|
http = "1.3.1"
|
||||||
sha2 = { version = "0.10.8", features = ["oid"] }
|
sha2 = { version = "0.10.9", features = ["oid"] }
|
||||||
thiserror = "2.0.11"
|
thiserror = "2.0.12"
|
||||||
derive_builder = "0.20.2"
|
derive_builder = "0.20.2"
|
||||||
itertools = "0.14.0"
|
itertools = "0.14.0"
|
||||||
dyn-clone = "1.0.17"
|
dyn-clone = "1.0.19"
|
||||||
enum_delegate = "0.2.0"
|
enum_delegate = "0.2.0"
|
||||||
httpdate = "1.0.3"
|
httpdate = "1.0.3"
|
||||||
http-signature-normalization-reqwest = { version = "0.13.0", default-features = false, features = [
|
http-signature-normalization-reqwest = { version = "0.13.0", default-features = false, features = [
|
||||||
|
|
@ -60,7 +60,7 @@ http-signature-normalization-reqwest = { version = "0.13.0", default-features =
|
||||||
"default-spawner",
|
"default-spawner",
|
||||||
] }
|
] }
|
||||||
http-signature-normalization = "0.7.0"
|
http-signature-normalization = "0.7.0"
|
||||||
bytes = "1.9.0"
|
bytes = "1.10.1"
|
||||||
futures-core = { version = "0.3.31", default-features = false }
|
futures-core = { version = "0.3.31", default-features = false }
|
||||||
pin-project-lite = "0.2.16"
|
pin-project-lite = "0.2.16"
|
||||||
activitystreams-kinds = "0.3.0"
|
activitystreams-kinds = "0.3.0"
|
||||||
|
|
@ -68,30 +68,32 @@ regex = { version = "1.11.1", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
"unicode",
|
"unicode",
|
||||||
] }
|
] }
|
||||||
tokio = { version = "1.43.0", features = [
|
tokio = { version = "1.45.0", features = [
|
||||||
"sync",
|
"sync",
|
||||||
"rt",
|
"rt",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"time",
|
"time",
|
||||||
] }
|
] }
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
moka = { version = "0.12.8", features = ["future"] }
|
moka = { version = "0.12.10", features = ["future"] }
|
||||||
either = "1.15.0"
|
either = "1.15.0"
|
||||||
|
|
||||||
# Actix-web
|
# Actix-web
|
||||||
actix-web = { version = "4.9.0", default-features = false, optional = true }
|
actix-web = { version = "4.11.0", default-features = false, optional = true }
|
||||||
http02 = { package = "http", version = "0.2.12", optional = true }
|
http02 = { package = "http", version = "0.2.12", optional = true }
|
||||||
|
|
||||||
# Axum
|
# Axum
|
||||||
axum = { version = "0.8.1", features = ["json"], default-features = false, optional = true }
|
axum = { version = "0.8.4", features = [
|
||||||
|
"json",
|
||||||
|
], default-features = false, optional = true }
|
||||||
tower = { version = "0.5.2", optional = true }
|
tower = { version = "0.5.2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1.0.95"
|
anyhow = "1.0.98"
|
||||||
axum = { version = "0.8.1", features = ["macros"] }
|
axum = { version = "0.8.4", features = ["macros"] }
|
||||||
axum-extra = { version = "0.10.0", features = ["typed-header"] }
|
axum-extra = { version = "0.10.1", features = ["typed-header"] }
|
||||||
env_logger = "0.11.6"
|
env_logger = "0.11.8"
|
||||||
tokio = { version = "1.43.0", features = ["full"] }
|
tokio = { version = "1.45.0", features = ["full"] }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
strip = "symbols"
|
strip = "symbols"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue