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 = [
|
|
|
|
"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-07-10 18:15:41 +00:00
|
|
|
]
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
[dependencies]
|
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-16 12:52:20 +00:00
|
|
|
diesel = "1.4"
|
|
|
|
diesel_migrations = "1.4"
|
|
|
|
dotenv = "0.15"
|
2020-09-14 15:29:50 +00:00
|
|
|
activitystreams = "0.7.0-alpha.4"
|
2020-08-01 13:25:17 +00:00
|
|
|
activitystreams-ext = "0.1.0-alpha.2"
|
2020-09-16 12:52:20 +00:00
|
|
|
bcrypt = "0.8"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"]}
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
actix = "0.10"
|
|
|
|
actix-web = { version = "3.0", default-features = false }
|
|
|
|
actix-files = { version = "0.3", default-features = false }
|
|
|
|
actix-web-actors = { version = "3.0", default-features = false }
|
|
|
|
actix-rt = { version = "1.1", default-features = false }
|
|
|
|
awc = { version = "2.0", default-features = false }
|
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.7"
|
|
|
|
rand = "0.7"
|
|
|
|
strum = "0.19"
|
|
|
|
strum_macros = "0.19"
|
|
|
|
jsonwebtoken = "7.0"
|
|
|
|
lazy_static = "1.3"
|
|
|
|
rss = "1.9"
|
|
|
|
url = { version = "2.1", features = ["serde"] }
|
|
|
|
percent-encoding = "2.1"
|
2020-04-03 04:12:05 +00:00
|
|
|
openssl = "0.10"
|
2020-09-16 12:52:20 +00:00
|
|
|
http = "0.2"
|
|
|
|
http-signature-normalization-actix = { version = "0.4", default-features = false, features = ["sha-2"] }
|
|
|
|
base64 = "0.12"
|
|
|
|
tokio = "0.2"
|
|
|
|
futures = "0.3"
|
|
|
|
itertools = "0.9"
|
2020-04-27 22:17:02 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2020-07-01 12:54:29 +00:00
|
|
|
sha2 = "0.9"
|
2020-09-16 12:52:20 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
captcha = "0.0"
|
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
background-jobs = " 0.8"
|
2020-08-31 13:48:02 +00:00
|
|
|
reqwest = { version = "0.10", features = ["json"] }
|
2020-09-15 19:26:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies.cargo-husky]
|
|
|
|
version = "1"
|
|
|
|
default-features = false # Disable features which are enabled by default
|
|
|
|
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"]
|