chore: bump deps
This commit is contained in:
parent
d1c3643574
commit
f802a1c8ab
6 changed files with 94 additions and 41 deletions
|
@ -16,15 +16,15 @@ tower-http = { version = "0.6.6", features = [
|
|||
"set-header",
|
||||
] }
|
||||
axum = { version = "0.8.4", features = ["macros", "ws"] }
|
||||
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
|
||||
tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread"] }
|
||||
axum-extra = { version = "0.10.1", features = ["cookie", "multipart"] }
|
||||
ammonia = "4.1.0"
|
||||
ammonia = "4.1.1"
|
||||
tetratto-shared = { path = "../shared" }
|
||||
tetratto-core = { path = "../core" }
|
||||
tetratto-l10n = { path = "../l10n" }
|
||||
|
||||
image = "0.25.6"
|
||||
reqwest = { version = "0.12.20", features = ["json", "stream"] }
|
||||
reqwest = { version = "0.12.22", features = ["json", "stream"] }
|
||||
regex = "1.11.1"
|
||||
serde_json = "1.0.140"
|
||||
mime_guess = "2.0.5"
|
||||
|
@ -41,4 +41,4 @@ async-stripe = { version = "0.41.0", features = [
|
|||
] }
|
||||
emojis = "0.7.0"
|
||||
webp = "0.3.0"
|
||||
bberry = "0.2.0"
|
||||
nanoneo = "0.2.0"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use bberry::{
|
||||
use nanoneo::{
|
||||
core::element::{Element, Render},
|
||||
text, read_param,
|
||||
};
|
||||
|
@ -240,7 +240,7 @@ pub(crate) async fn replace_in_html(
|
|||
input.to_string()
|
||||
} else {
|
||||
let start = SystemTime::now();
|
||||
let parsed = bberry::parse(input);
|
||||
let parsed = nanoneo::parse(input);
|
||||
println!("parsed lisp in {}μs", start.elapsed().unwrap().as_micros());
|
||||
|
||||
if let Some(plugins) = plugins {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue