2021-02-09 13:26:06 -05:00
|
|
|
[package]
|
|
|
|
name = "lemmy_routes"
|
2022-11-17 10:23:01 -05:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2022-11-24 11:38:00 -05:00
|
|
|
repository.workspace = true
|
2021-02-09 13:26:06 -05:00
|
|
|
|
2021-02-25 14:43:39 -05:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2021-02-09 13:26:06 -05:00
|
|
|
[dependencies]
|
2022-11-17 10:23:01 -05:00
|
|
|
lemmy_utils = { workspace = true }
|
|
|
|
lemmy_db_views = { workspace = true }
|
|
|
|
lemmy_db_views_actor = { workspace = true }
|
|
|
|
lemmy_db_schema = { workspace = true }
|
2022-11-28 09:29:33 -05:00
|
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
2023-03-21 11:03:05 -04:00
|
|
|
activitypub_federation = { workspace = true }
|
2023-05-29 10:44:20 -04:00
|
|
|
actix-web = { workspace = true, features = ["cookies"] }
|
2022-11-17 10:23:01 -05:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
reqwest = { workspace = true, features = ["stream"] }
|
|
|
|
reqwest-middleware = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2023-06-15 05:37:05 -04:00
|
|
|
rss = "2.0.4"
|