2019-02-28 06:02:55 +00:00
|
|
|
[package]
|
2019-05-03 01:34:21 +00:00
|
|
|
name = "lemmy_server"
|
2019-02-28 06:02:55 +00:00
|
|
|
version = "0.0.1"
|
2019-06-03 17:47:12 +00:00
|
|
|
edition = "2018"
|
2019-04-06 05:29:20 +00:00
|
|
|
|
2020-06-12 13:29:50 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
|
2020-07-10 18:15:41 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2020-09-24 13:53:21 +00:00
|
|
|
"lemmy_api",
|
|
|
|
"lemmy_apub",
|
2020-07-10 18:15:41 +00:00
|
|
|
"lemmy_utils",
|
2020-09-01 14:25:34 +00:00
|
|
|
"lemmy_db",
|
2020-09-16 10:25:22 +00:00
|
|
|
"lemmy_structs",
|
2020-09-02 23:17:35 +00:00
|
|
|
"lemmy_rate_limit",
|
2020-09-24 13:53:21 +00:00
|
|
|
"lemmy_websocket",
|
2020-07-10 18:15:41 +00:00
|
|
|
]
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
[dependencies]
|
2020-09-24 13:53:21 +00:00
|
|
|
lemmy_api = { path = "./lemmy_api" }
|
|
|
|
lemmy_apub = { path = "./lemmy_apub" }
|
2020-07-10 18:15:41 +00:00
|
|
|
lemmy_utils = { path = "./lemmy_utils" }
|
|
|
|
lemmy_db = { path = "./lemmy_db" }
|
2020-09-16 10:25:22 +00:00
|
|
|
lemmy_structs = { path = "./lemmy_structs" }
|
2020-09-01 14:25:34 +00:00
|
|
|
lemmy_rate_limit = { path = "./lemmy_rate_limit" }
|
2020-09-24 13:53:21 +00:00
|
|
|
lemmy_websocket = { path = "./lemmy_websocket" }
|
2020-12-04 14:00:15 +00:00
|
|
|
diesel = "1.4.5"
|
|
|
|
diesel_migrations = "1.4.0"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
2020-12-07 12:40:39 +00:00
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2020-12-04 14:00:15 +00:00
|
|
|
actix = "0.10.0"
|
|
|
|
actix-web = { version = "3.3.2", default-features = false, features = ["rustls"] }
|
|
|
|
actix-files = { version = "0.4.1", default-features = false }
|
|
|
|
actix-web-actors = { version = "3.0.0", default-features = false }
|
|
|
|
awc = { version = "2.0.3", default-features = false }
|
|
|
|
log = "0.4.11"
|
|
|
|
env_logger = "0.8.2"
|
|
|
|
strum = "0.20.0"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
rss = "1.9.0"
|
|
|
|
url = { version = "2.2.0", features = ["serde"] }
|
|
|
|
openssl = "0.10.30"
|
|
|
|
http-signature-normalization-actix = { version = "0.4.1", default-features = false, features = ["sha-2"] }
|
|
|
|
tokio = "0.3.5"
|
|
|
|
sha2 = "0.9.2"
|
2020-12-07 12:40:39 +00:00
|
|
|
anyhow = "1.0.35"
|
2020-12-04 14:00:15 +00:00
|
|
|
reqwest = { version = "0.10.9", features = ["json"] }
|
|
|
|
activitystreams = "0.7.0-alpha.8"
|
|
|
|
actix-rt = { version = "1.1.1", default-features = false }
|
|
|
|
serde_json = { version = "1.0.60", features = ["preserve_order"] }
|
2020-09-15 19:26:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies.cargo-husky]
|
2020-12-04 14:00:15 +00:00
|
|
|
version = "1.5.0"
|
2020-09-15 19:26:47 +00:00
|
|
|
default-features = false # Disable features which are enabled by default
|
|
|
|
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"]
|