mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-06 04:25:00 +00:00
Nutomic
e8a52d3a5c
* Add markdown rule to add rel=nofollow for all links * Add markdown image rule to add local image proxy (fixes #1036) * comments * rewrite markdown image links working * add comment * perform markdown image processing in api/apub receivers * clippy * add db table to validate proxied links * rewrite link fields for avatar, banner etc * sql fmt * proxy links received over federation * add config option * undo post.url rewriting, move http route definition * add tests * proxy images through pictrs * testing * cleanup request.rs file * more cleanup (fixes #2611) * include url content type when sending post over apub (fixes #2611) * store post url content type in db * should be media_type * get rid of cache_remote_thumbnails setting, instead automatically take thumbnail from federation data if available. * fix tests * add setting disable_external_link_previews * federate post url as image depending on mime type * change setting again * machete * invert * support custom emoji * clippy * update defaults * add image proxy test, fix test * fix test * clippy * revert accidental changes * address review * clippy * Markdown link rule-dess (#4356) * Extracting opengraph_data to its own type. * A few additions for markdown-link-rule. --------- Co-authored-by: Nutomic <me@nutomic.com> * fix setting * use enum for image proxy setting * fix test configs * add config backwards compat * clippy * machete --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
84 lines
2.3 KiB
TOML
84 lines
2.3 KiB
TOML
[package]
|
|
name = "lemmy_api_common"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "lemmy_api_common"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
full = [
|
|
"tracing",
|
|
"rosetta-i18n",
|
|
"lemmy_utils",
|
|
"lemmy_db_views/full",
|
|
"lemmy_db_views_actor/full",
|
|
"lemmy_db_views_moderator/full",
|
|
"activitypub_federation",
|
|
"encoding",
|
|
"reqwest-middleware",
|
|
"webpage",
|
|
"ts-rs",
|
|
"tokio",
|
|
"uuid",
|
|
"reqwest",
|
|
"actix-web",
|
|
"futures",
|
|
"once_cell",
|
|
"jsonwebtoken",
|
|
"mime",
|
|
]
|
|
|
|
[dependencies]
|
|
lemmy_db_views = { workspace = true }
|
|
lemmy_db_views_moderator = { workspace = true }
|
|
lemmy_db_views_actor = { workspace = true }
|
|
lemmy_db_schema = { workspace = true }
|
|
lemmy_utils = { workspace = true, optional = true }
|
|
activitypub_federation = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
url = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
reqwest-middleware = { workspace = true, optional = true }
|
|
regex = { workspace = true }
|
|
rosetta-i18n = { workspace = true, optional = true }
|
|
anyhow = { workspace = true }
|
|
futures = { workspace = true, optional = true }
|
|
uuid = { workspace = true, optional = true }
|
|
tokio = { workspace = true, optional = true }
|
|
reqwest = { workspace = true, optional = true }
|
|
ts-rs = { workspace = true, optional = true }
|
|
once_cell = { workspace = true, optional = true }
|
|
actix-web = { workspace = true, optional = true }
|
|
enum-map = { workspace = true }
|
|
urlencoding = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
mime = { version = "0.3.17", optional = true }
|
|
webpage = { version = "1.6", default-features = false, features = [
|
|
"serde",
|
|
], optional = true }
|
|
encoding = { version = "0.2.33", optional = true }
|
|
jsonwebtoken = { version = "8.3.0", optional = true }
|
|
# necessary for wasmt compilation
|
|
getrandom = { version = "0.2.12", features = ["js"] }
|
|
task-local-extensions = "0.1.4"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["getrandom"]
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|