Version 0.5.0
This commit is contained in:
parent
9c3c756890
commit
3efa99514c
1 changed files with 14 additions and 14 deletions
28
Cargo.toml
28
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "activitypub_federation"
|
||||
version = "0.5.0-beta.7"
|
||||
version = "0.5.0"
|
||||
edition = "2021"
|
||||
description = "High-level Activitypub framework"
|
||||
keywords = ["activitypub", "activitystreams", "federation", "fediverse"]
|
||||
|
@ -16,19 +16,19 @@ diesel = ["dep:diesel"]
|
|||
|
||||
[dependencies]
|
||||
chrono = { version = "0.4.31", features = ["clock"], default-features = false }
|
||||
serde = { version = "1.0.193", features = ["derive"] }
|
||||
async-trait = "0.1.74"
|
||||
serde = { version = "1.0.194", features = ["derive"] }
|
||||
async-trait = "0.1.77"
|
||||
url = { version = "2.5.0", features = ["serde"] }
|
||||
serde_json = { version = "1.0.108", features = ["preserve_order"] }
|
||||
reqwest = { version = "0.11.22", features = ["json", "stream"] }
|
||||
serde_json = { version = "1.0.110", features = ["preserve_order"] }
|
||||
reqwest = { version = "0.11.23", features = ["json", "stream"] }
|
||||
reqwest-middleware = "0.2.4"
|
||||
tracing = "0.1.40"
|
||||
base64 = "0.21.5"
|
||||
openssl = "0.10.61"
|
||||
openssl = "0.10.62"
|
||||
once_cell = "1.19.0"
|
||||
http = "0.2.11"
|
||||
sha2 = "0.10.8"
|
||||
thiserror = "1.0.50"
|
||||
thiserror = "1.0.56"
|
||||
derive_builder = "0.12.0"
|
||||
itertools = "0.12.0"
|
||||
dyn-clone = "1.0.16"
|
||||
|
@ -41,22 +41,22 @@ http-signature-normalization-reqwest = { version = "0.10.0", default-features =
|
|||
] }
|
||||
http-signature-normalization = "0.7.0"
|
||||
bytes = "1.5.0"
|
||||
futures-core = { version = "0.3.29", default-features = false }
|
||||
futures-core = { version = "0.3.30", default-features = false }
|
||||
pin-project-lite = "0.2.13"
|
||||
activitystreams-kinds = "0.3.0"
|
||||
regex = { version = "1.10.2", default-features = false, features = ["std", "unicode-case"] }
|
||||
tokio = { version = "1.35.0", features = [
|
||||
tokio = { version = "1.35.1", features = [
|
||||
"sync",
|
||||
"rt",
|
||||
"rt-multi-thread",
|
||||
"time",
|
||||
] }
|
||||
diesel = { version = "2.1.4", features = ["postgres"], default-features = false, optional = true }
|
||||
futures = "0.3.29"
|
||||
moka = { version = "0.12.1", features = ["future"] }
|
||||
futures = "0.3.30"
|
||||
moka = { version = "0.12.2", features = ["future"] }
|
||||
|
||||
# Actix-web
|
||||
actix-web = { version = "4.4.0", default-features = false, optional = true }
|
||||
actix-web = { version = "4.4.1", default-features = false, optional = true }
|
||||
|
||||
# Axum
|
||||
axum = { version = "0.6.20", features = [
|
||||
|
@ -68,7 +68,7 @@ hyper = { version = "0.14", optional = true }
|
|||
http-body-util = {version = "0.1.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.75"
|
||||
anyhow = "1.0.79"
|
||||
rand = "0.8.5"
|
||||
env_logger = "0.10.1"
|
||||
tower-http = { version = "0.5.0", features = ["map-request-body", "util"] }
|
||||
|
@ -78,7 +78,7 @@ axum = { version = "0.6.20", features = [
|
|||
"query",
|
||||
], default-features = false }
|
||||
axum-macros = "0.3.8"
|
||||
tokio = { version = "1.35.0", features = ["full"] }
|
||||
tokio = { version = "1.35.1", features = ["full"] }
|
||||
|
||||
[profile.dev]
|
||||
strip = "symbols"
|
||||
|
|
Loading…
Reference in a new issue