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
|
|
|
|
|
|
|
|
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"] }
|
|
|
|
once_cell.workspace = true
|
|
|
|
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
|
2023-11-24 09:29:41 +00:00
|
|
|
tokio-util = "0.7.10"
|