2020-09-24 09:53:21 -04:00
|
|
|
[package]
|
|
|
|
name = "lemmy_websocket"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lemmy_websocket"
|
|
|
|
path = "src/lib.rs"
|
2021-02-25 14:43:39 -05:00
|
|
|
doctest = false
|
2020-09-24 09:53:21 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-20 10:21:27 -05:00
|
|
|
lemmy_utils = { path = "../utils" }
|
2021-03-25 15:19:40 -04:00
|
|
|
lemmy_api_common = { path = "../api_common" }
|
2021-01-20 10:21:27 -05:00
|
|
|
lemmy_db_queries = { path = "../db_queries" }
|
|
|
|
lemmy_db_schema = { path = "../db_schema" }
|
2021-07-06 09:26:46 -04:00
|
|
|
reqwest = { version = "0.11.4", features = ["json"] }
|
2021-02-01 15:56:37 -05:00
|
|
|
log = "0.4.14"
|
2021-07-06 09:26:46 -04:00
|
|
|
rand = "0.8.4"
|
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
actix = "0.12.0"
|
|
|
|
anyhow = "1.0.41"
|
|
|
|
diesel = "1.4.7"
|
|
|
|
background-jobs = "0.9.0"
|
|
|
|
tokio = "1.8.0"
|
|
|
|
strum = "0.21.0"
|
|
|
|
strum_macros = "0.21.1"
|
2020-12-04 09:00:15 -05:00
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2021-07-06 09:26:46 -04:00
|
|
|
actix-web = { version = "4.0.0-beta.8", default-features = false, features = ["rustls"] }
|
|
|
|
actix-web-actors = { version = "4.0.0-beta.6", default-features = false }
|