Use plume_common::escape() instead of askama_escape::escape() directly

This commit is contained in:
Kitaiti Makoto 2022-01-07 05:38:17 +09:00
parent c786569171
commit 61d5446113
4 changed files with 3 additions and 13 deletions

10
Cargo.lock generated
View file

@ -198,12 +198,6 @@ version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
[[package]]
name = "askama_escape"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "719b48039ffac1564f67d70162109ba9341125cee0096a540e478355b3c724a7"
[[package]]
name = "askama_escape"
version = "0.10.2"
@ -2987,7 +2981,6 @@ name = "plume"
version = "0.7.1-dev"
dependencies = [
"activitypub",
"askama_escape 0.1.0",
"atom_syndication",
"chrono",
"clap",
@ -3048,7 +3041,7 @@ dependencies = [
"activitystreams-derive",
"activitystreams-traits",
"array_tool",
"askama_escape 0.10.2",
"askama_escape",
"base64 0.10.1",
"chrono",
"heck",
@ -3101,7 +3094,6 @@ version = "0.7.1-dev"
dependencies = [
"activitypub",
"ammonia",
"askama_escape 0.1.0",
"bcrypt",
"chrono",
"diesel",

View file

@ -7,7 +7,6 @@ edition = "2018"
[dependencies]
activitypub = "0.1.3"
askama_escape = "0.1"
atom_syndication = "0.6"
clap = "2.33"
dotenv = "0.15.0"

View file

@ -3,12 +3,11 @@ use crate::{
users::User, Connection, Error, Result, CONFIG,
};
use activitypub::object::Image;
use askama_escape::escape;
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
use guid_create::GUID;
use plume_common::{
activity_pub::{inbox::FromId, request, Id},
utils::MediaProcessor,
utils::{escape, MediaProcessor},
};
use std::{
fs::{self, DirBuilder},

View file

@ -9,7 +9,7 @@ use rocket_i18n::Catalog;
use std::collections::{btree_map::BTreeMap, hash_map::DefaultHasher};
use std::hash::Hasher;
pub use askama_escape::escape;
pub use plume_common::utils::escape;
pub static CACHE_NAME: &str = env!("CACHE_ID");