2020-09-24 13:53:21 +00:00
|
|
|
[package]
|
|
|
|
name = "lemmy_apub"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Felix Ableitner <me@nutomic.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lemmy_apub"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lemmy_utils = { path = "../lemmy_utils" }
|
|
|
|
lemmy_db = { path = "../lemmy_db" }
|
|
|
|
lemmy_structs = { path = "../lemmy_structs" }
|
|
|
|
lemmy_websocket = { path = "../lemmy_websocket" }
|
|
|
|
diesel = "1.4"
|
2020-11-25 17:44:49 +00:00
|
|
|
activitystreams = "0.7.0-alpha.7"
|
2020-09-24 13:53:21 +00:00
|
|
|
activitystreams-ext = "0.1.0-alpha.2"
|
|
|
|
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-rt = { version = "1.1", default-features = false }
|
|
|
|
awc = { version = "2.0", default-features = false }
|
|
|
|
log = "0.4"
|
|
|
|
rand = "0.7"
|
|
|
|
strum = "0.19"
|
|
|
|
strum_macros = "0.19"
|
|
|
|
lazy_static = "1.3"
|
|
|
|
url = { version = "2.1", features = ["serde"] }
|
|
|
|
percent-encoding = "2.1"
|
|
|
|
openssl = "0.10"
|
|
|
|
http = "0.2"
|
|
|
|
http-signature-normalization-actix = { version = "0.4", default-features = false, features = ["sha-2"] }
|
2020-09-30 00:56:41 +00:00
|
|
|
http-signature-normalization-reqwest = { version = "0.1.3", default-features = false, features = ["sha-2"] }
|
2020-10-10 03:51:47 +00:00
|
|
|
base64 = "0.13"
|
2020-10-30 17:19:00 +00:00
|
|
|
tokio = "0.3"
|
2020-09-24 13:53:21 +00:00
|
|
|
futures = "0.3"
|
|
|
|
itertools = "0.9"
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
sha2 = "0.9"
|
|
|
|
async-trait = "0.1"
|
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
background-jobs = " 0.8"
|
2020-09-30 00:56:41 +00:00
|
|
|
reqwest = { version = "0.10", features = ["json"] }
|
2020-11-30 17:24:10 +00:00
|
|
|
backtrace = "0.3"
|