mirror of
https://github.com/LemmyNet/activitypub-federation-rust.git
synced 2025-01-21 11:48:07 +00:00
Upgrade dependencies
This commit is contained in:
parent
636b47c8b2
commit
3b5e5f66ba
1 changed files with 17 additions and 17 deletions
34
Cargo.toml
34
Cargo.toml
|
@ -15,23 +15,23 @@ axum = ["dep:axum", "dep:tower", "dep:hyper", "dep:http-body-util"]
|
||||||
diesel = ["dep:diesel"]
|
diesel = ["dep:diesel"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4.31", features = ["clock"], default-features = false }
|
chrono = { version = "0.4.34", features = ["clock"], default-features = false }
|
||||||
serde = { version = "1.0.194", features = ["derive"] }
|
serde = { version = "1.0.197", features = ["derive"] }
|
||||||
async-trait = "0.1.77"
|
async-trait = "0.1.77"
|
||||||
url = { version = "2.5.0", features = ["serde"] }
|
url = { version = "2.5.0", features = ["serde"] }
|
||||||
serde_json = { version = "1.0.110", features = ["preserve_order"] }
|
serde_json = { version = "1.0.114", features = ["preserve_order"] }
|
||||||
reqwest = { version = "0.11.23", features = ["json", "stream"] }
|
reqwest = { version = "0.11.24", features = ["json", "stream"] }
|
||||||
reqwest-middleware = "0.2.4"
|
reqwest-middleware = "0.2.4"
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
base64 = "0.21.5"
|
base64 = "0.21.7"
|
||||||
openssl = "0.10.62"
|
openssl = "0.10.64"
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
http = "0.2.11"
|
http = "0.2.11"
|
||||||
sha2 = "0.10.8"
|
sha2 = "0.10.8"
|
||||||
thiserror = "1.0.56"
|
thiserror = "1.0.57"
|
||||||
derive_builder = "0.12.0"
|
derive_builder = "0.12.0"
|
||||||
itertools = "0.12.0"
|
itertools = "0.12.1"
|
||||||
dyn-clone = "1.0.16"
|
dyn-clone = "1.0.17"
|
||||||
enum_delegate = "0.2.0"
|
enum_delegate = "0.2.0"
|
||||||
httpdate = "1.0.3"
|
httpdate = "1.0.3"
|
||||||
http-signature-normalization-reqwest = { version = "0.10.0", default-features = false, features = [
|
http-signature-normalization-reqwest = { version = "0.10.0", default-features = false, features = [
|
||||||
|
@ -44,8 +44,8 @@ bytes = "1.5.0"
|
||||||
futures-core = { version = "0.3.30", default-features = false }
|
futures-core = { version = "0.3.30", default-features = false }
|
||||||
pin-project-lite = "0.2.13"
|
pin-project-lite = "0.2.13"
|
||||||
activitystreams-kinds = "0.3.0"
|
activitystreams-kinds = "0.3.0"
|
||||||
regex = { version = "1.10.2", default-features = false, features = ["std", "unicode-case"] }
|
regex = { version = "1.10.3", default-features = false, features = ["std", "unicode-case"] }
|
||||||
tokio = { version = "1.35.1", features = [
|
tokio = { version = "1.36.0", features = [
|
||||||
"sync",
|
"sync",
|
||||||
"rt",
|
"rt",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
|
@ -53,10 +53,10 @@ tokio = { version = "1.35.1", features = [
|
||||||
] }
|
] }
|
||||||
diesel = { version = "2.1.4", features = ["postgres"], default-features = false, optional = true }
|
diesel = { version = "2.1.4", features = ["postgres"], default-features = false, optional = true }
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
moka = { version = "0.12.2", features = ["future"] }
|
moka = { version = "0.12.5", features = ["future"] }
|
||||||
|
|
||||||
# Actix-web
|
# Actix-web
|
||||||
actix-web = { version = "4.4.1", default-features = false, optional = true }
|
actix-web = { version = "4.5.1", default-features = false, optional = true }
|
||||||
|
|
||||||
# Axum
|
# Axum
|
||||||
axum = { version = "0.6.20", features = [
|
axum = { version = "0.6.20", features = [
|
||||||
|
@ -68,17 +68,17 @@ hyper = { version = "0.14", optional = true }
|
||||||
http-body-util = {version = "0.1.0", optional = true }
|
http-body-util = {version = "0.1.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.80"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
env_logger = "0.10.1"
|
env_logger = "0.10.2"
|
||||||
tower-http = { version = "0.5.0", features = ["map-request-body", "util"] }
|
tower-http = { version = "0.5.2", features = ["map-request-body", "util"] }
|
||||||
axum = { version = "0.6.20", features = [
|
axum = { version = "0.6.20", features = [
|
||||||
"http1",
|
"http1",
|
||||||
"tokio",
|
"tokio",
|
||||||
"query",
|
"query",
|
||||||
], default-features = false }
|
], default-features = false }
|
||||||
axum-macros = "0.3.8"
|
axum-macros = "0.3.8"
|
||||||
tokio = { version = "1.35.1", features = ["full"] }
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
strip = "symbols"
|
strip = "symbols"
|
||||||
|
|
Loading…
Reference in a new issue