2020-09-24 13:53:21 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_websocket"
|
2022-11-17 15:23:01 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation.workspace = true
|
2020-09-24 13:53:21 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lemmy_websocket"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 19:43:39 +00:00
|
|
|
doctest = false
|
2020-09-24 13:53:21 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-17 15:23:01 +00:00
|
|
|
lemmy_utils = { workspace = true }
|
|
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
|
|
lemmy_db_views_actor = { workspace = true, features = ["full"] }
|
|
|
|
reqwest-middleware = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
actix = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
diesel = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
opentelemetry = { workspace = true }
|
|
|
|
tracing-opentelemetry = { workspace = true }
|
2022-03-02 18:00:52 +00:00
|
|
|
actix-web-actors = { version = "4.1.0", default-features = false }
|
2022-11-17 15:23:01 +00:00
|
|
|
background-jobs = "0.13.0"
|