activitypub-federation-rust/Cargo.toml

122 lines
3.1 KiB
TOML
Raw Permalink Normal View History

2022-06-02 04:17:12 -07:00
[package]
name = "activitypub_federation"
2024-07-16 03:29:28 -07:00
version = "0.5.8"
2022-06-02 04:17:12 -07:00
edition = "2021"
description = "High-level Activitypub framework"
keywords = ["activitypub", "activitystreams", "federation", "fediverse"]
2022-06-02 04:17:12 -07:00
license = "AGPL-3.0"
repository = "https://github.com/LemmyNet/activitypub-federation-rust"
2022-06-16 04:10:12 -07:00
documentation = "https://docs.rs/activitypub_federation/"
2022-06-02 04:17:12 -07:00
2023-12-01 06:40:12 -08:00
[features]
default = ["axum"]
axum = [
"dep:axum",
"dep:axum-extra",
"dep:tower",
"dep:hyper",
"dep:http-body-util",
]
diesel = ["dep:diesel"]
2023-12-01 06:40:12 -08:00
[lints.rust]
warnings = "deny"
deprecated = "deny"
[lints.clippy]
perf = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
dbg_macro = "deny"
inefficient_to_string = "deny"
items-after-statements = "deny"
implicit_clone = "deny"
wildcard_imports = "deny"
cast_lossless = "deny"
manual_string_new = "deny"
redundant_closure_for_method_calls = "deny"
unwrap_used = "deny"
2022-06-02 04:17:12 -07:00
[dependencies]
2024-05-02 03:58:08 -07:00
chrono = { version = "0.4.38", features = ["clock"], default-features = false }
2024-07-16 03:29:14 -07:00
serde = { version = "1.0.204", features = ["derive"] }
async-trait = "0.1.81"
url = { version = "2.5.2", features = ["serde"] }
serde_json = { version = "1.0.120", features = ["preserve_order"] }
reqwest = { version = "0.12.5", default-features = false, features = [
"json",
"stream",
"rustls-tls",
] }
reqwest-middleware = "0.3.2"
2023-10-24 02:34:42 -07:00
tracing = "0.1.40"
2024-05-02 03:58:08 -07:00
base64 = "0.22.1"
rand = "0.8.5"
rsa = "0.9.6"
2023-12-12 02:32:22 -08:00
once_cell = "1.19.0"
http = "1.1.0"
sha2 = { version = "0.10.8", features = ["oid"] }
2024-07-16 03:29:14 -07:00
thiserror = "1.0.62"
2024-05-02 03:58:08 -07:00
derive_builder = "0.20.0"
2024-07-16 03:29:14 -07:00
itertools = "0.13.0"
2024-03-04 07:23:46 -08:00
dyn-clone = "1.0.17"
2022-11-14 04:04:36 -08:00
enum_delegate = "0.2.0"
2023-10-24 02:34:42 -07:00
httpdate = "1.0.3"
http-signature-normalization-reqwest = { version = "0.12.0", default-features = false, features = [
"sha-2",
"middleware",
2023-12-01 06:40:12 -08:00
"default-spawner",
] }
http-signature-normalization = "0.7.0"
2024-07-16 03:29:14 -07:00
bytes = "1.6.1"
2024-01-02 02:33:58 -08:00
futures-core = { version = "0.3.30", default-features = false }
2024-05-02 03:58:08 -07:00
pin-project-lite = "0.2.14"
activitystreams-kinds = "0.3.0"
regex = { version = "1.10.5", default-features = false, features = [
"std",
"unicode",
] }
2024-07-16 03:29:14 -07:00
tokio = { version = "1.38.0", features = [
"sync",
"rt",
"rt-multi-thread",
"time",
] }
2024-07-16 03:29:14 -07:00
diesel = { version = "2.2.1", features = [
"postgres",
], default-features = false, optional = true }
2024-01-02 02:33:58 -08:00
futures = "0.3.30"
2024-07-16 03:29:14 -07:00
moka = { version = "0.12.8", features = ["future"] }
# Axum
axum = { version = "0.7.5", features = [
"json",
], default-features = false, optional = true }
axum-extra = { version = "0.9.3", features = ["typed-header"], optional = true }
tower = { version = "0.4.13", optional = true }
hyper = { version = "1.4.1", optional = true }
2024-07-16 03:29:14 -07:00
http-body-util = { version = "0.1.2", optional = true }
2022-06-02 04:17:12 -07:00
[dev-dependencies]
2024-07-16 03:29:14 -07:00
anyhow = "1.0.86"
2024-05-02 03:58:08 -07:00
env_logger = "0.11.3"
2024-03-04 07:23:46 -08:00
tower-http = { version = "0.5.2", features = ["map-request-body", "util"] }
axum = { version = "0.7.5", features = [
"http1",
"tokio",
"query",
], default-features = false }
axum-macros = "0.4.1"
2024-07-16 03:29:14 -07:00
tokio = { version = "1.38.0", features = ["full"] }
[profile.dev]
strip = "symbols"
debug = 0
[[example]]
name = "local_federation"
path = "examples/local_federation/main.rs"
2023-03-07 14:01:36 -08:00
[[example]]
name = "live_federation"
path = "examples/live_federation/main.rs"