2023-09-09 16:25:03 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_federate"
|
2023-12-20 14:11:58 +00:00
|
|
|
publish = false
|
2023-09-09 16:25:03 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-11-21 13:51:22 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-09-09 16:25:03 +00:00
|
|
|
[dependencies]
|
|
|
|
lemmy_api_common.workspace = true
|
|
|
|
lemmy_apub.workspace = true
|
|
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_views_actor.workspace = true
|
2024-05-27 13:34:58 +00:00
|
|
|
lemmy_utils.workspace = true
|
2023-09-09 16:25:03 +00:00
|
|
|
|
|
|
|
activitypub_federation.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
chrono.workspace = true
|
|
|
|
diesel = { workspace = true, features = ["postgres", "chrono", "serde_json"] }
|
|
|
|
diesel-async = { workspace = true, features = ["deadpool", "postgres"] }
|
|
|
|
reqwest.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
tracing.workspace = true
|
2023-12-12 13:56:33 +00:00
|
|
|
moka.workspace = true
|
2024-05-23 14:55:20 +00:00
|
|
|
tokio-util = "0.7.11"
|
2024-07-21 15:50:50 +00:00
|
|
|
async-trait.workspace = true
|
2024-05-27 13:34:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = { workspace = true }
|
2024-07-21 15:50:50 +00:00
|
|
|
url.workspace = true
|
|
|
|
actix-web.workspace = true
|
|
|
|
tracing-test = "0.2.5"
|
|
|
|
uuid.workspace = true
|
|
|
|
test-context = "0.3.0"
|
2024-08-01 17:59:40 +00:00
|
|
|
mockall = "0.13.0"
|