Update base64, ammonia
All checks were successful
/ check (aarch64-unknown-linux-musl) (push) Successful in 2m32s
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 2m31s
/ check (x86_64-unknown-linux-musl) (push) Successful in 3m28s
/ tests (push) Successful in 2m18s
/ publish-docker (push) Successful in 15s
/ clippy (push) Successful in 1m48s
/ build (map[artifact:linux-arm32v7 platform:linux/arm/v7 target:armv7-unknown-linux-musleabihf]) (push) Successful in 6m15s
/ publish-forgejo (push) Successful in 22s
/ publish-crate (push) Successful in 2m28s
/ build (map[artifact:linux-amd64 platform:linux/amd64 target:x86_64-unknown-linux-musl]) (push) Successful in 6m15s
/ build (map[artifact:linux-arm64v8 platform:linux/arm64 target:aarch64-unknown-linux-musl]) (push) Successful in 3m53s

This commit is contained in:
asonix 2024-04-06 13:42:29 -05:00
parent 6444782db9
commit 76a0c79369
2 changed files with 23 additions and 13 deletions

32
Cargo.lock generated
View file

@ -315,9 +315,9 @@ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
[[package]]
name = "ammonia"
version = "3.3.0"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
checksum = "1ab99eae5ee58501ab236beb6f20f6ca39be615267b014899c89b2f0bc18a459"
dependencies = [
"html5ever",
"maplit",
@ -391,7 +391,7 @@ dependencies = [
"ammonia",
"async-cpupool",
"background-jobs",
"base64 0.21.7",
"base64 0.22.0",
"bcrypt",
"clap",
"color-eyre",
@ -1580,16 +1580,16 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
[[package]]
name = "html5ever"
version = "0.26.0"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn 1.0.109",
"syn 2.0.58",
]
[[package]]
@ -1975,13 +1975,13 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "markup5ever"
version = "0.11.0"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
checksum = "c7940b09815a02810a42b9e1bc41c069880a87de68e9b1dcbe754a3ba3b47c20"
dependencies = [
"log",
"phf 0.10.1",
"phf_codegen",
"phf 0.11.2",
"phf_codegen 0.11.2",
"string_cache",
"string_cache_codegen",
"tendril",
@ -2420,7 +2420,7 @@ dependencies = [
"fxhash",
"log",
"phf 0.10.1",
"phf_codegen",
"phf_codegen 0.10.0",
"precomputed-hash",
"smallvec",
]
@ -2562,6 +2562,16 @@ dependencies = [
"phf_shared 0.10.0",
]
[[package]]
name = "phf_codegen"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
dependencies = [
"phf_generator 0.11.2",
"phf_shared 0.11.2",
]
[[package]]
name = "phf_generator"
version = "0.10.0"

View file

@ -28,10 +28,10 @@ actix-web = { version = "4.4.0", default-features = false, features = ["compress
actix-webfinger = { version = "0.5.0", default-features = false }
activitystreams = "0.7.0-alpha.25"
activitystreams-ext = "0.1.0-alpha.3"
ammonia = "3.1.0"
ammonia = "4.0.0"
async-cpupool = "0.2.0"
bcrypt = "0.15"
base64 = "0.21"
base64 = "0.22"
clap = { version = "4.0.0", features = ["derive"] }
color-eyre = "0.6.2"
config = { version = "0.14.0", default-features = false, features = ["toml", "json", "yaml"] }