2021-02-09 18:26:06 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_routes"
|
2021-11-26 12:38:55 +00:00
|
|
|
version = "0.14.4-rc.4"
|
2021-02-09 18:26:06 +00:00
|
|
|
edition = "2018"
|
2021-07-24 09:55:56 +00:00
|
|
|
description = "A link aggregator for the fediverse"
|
|
|
|
license = "AGPL-3.0"
|
2021-10-19 17:03:43 +00:00
|
|
|
homepage = "https://join-lemmy.org/"
|
|
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
2021-02-09 18:26:06 +00:00
|
|
|
|
2021-02-25 19:43:39 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2021-02-09 18:26:06 +00:00
|
|
|
[dependencies]
|
2021-11-26 12:38:55 +00:00
|
|
|
lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
|
|
|
|
lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
|
|
|
|
lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
|
|
|
|
lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
|
|
|
|
lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
|
|
|
|
lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
|
|
|
|
lemmy_apub = { version = "=0.14.4-rc.4", path = "../apub" }
|
2021-09-29 18:50:00 +00:00
|
|
|
diesel = "1.4.8"
|
2021-07-06 13:26:46 +00:00
|
|
|
actix = "0.12.0"
|
2021-12-14 13:30:37 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.14", default-features = false, features = ["rustls"] }
|
|
|
|
actix-web-actors = { version = "4.0.0-beta.8", default-features = false }
|
|
|
|
actix-http = "3.0.0-beta.15"
|
|
|
|
sha2 = "0.10.0"
|
|
|
|
anyhow = "1.0.51"
|
2021-02-09 18:26:06 +00:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-12-08 15:56:43 +00:00
|
|
|
futures = "0.3.18"
|
|
|
|
reqwest = { version = "0.11.7", features = ["stream"] }
|
2021-12-14 13:30:37 +00:00
|
|
|
reqwest-middleware = "0.1.3"
|
|
|
|
rss = "2.0.0"
|
|
|
|
serde = { version = "1.0.131", features = ["derive"] }
|
2021-07-06 13:26:46 +00:00
|
|
|
url = { version = "2.2.2", features = ["serde"] }
|
2021-12-14 13:30:37 +00:00
|
|
|
strum = "0.23.0"
|
2021-11-22 18:58:31 +00:00
|
|
|
once_cell = "1.8.0"
|
2021-12-06 14:54:47 +00:00
|
|
|
tracing = "0.1.29"
|
2021-12-14 13:30:37 +00:00
|
|
|
tokio = { version = "1.14.0", features = ["sync"] }
|