chore: bump deps

This commit is contained in:
trisua 2025-07-17 00:44:05 -04:00
parent d1c3643574
commit f802a1c8ab
6 changed files with 94 additions and 41 deletions

View file

@ -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"

View file

@ -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 {

View file

@ -6,12 +6,12 @@ edition = "2024"
[dependencies]
pathbufd = "0.1.4"
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.23"
toml = "0.9.2"
tetratto-shared = { path = "../shared" }
tetratto-l10n = { path = "../l10n" }
serde_json = "1.0.140"
totp-rs = { version = "5.7.0", features = ["qr", "gen_secret"] }
reqwest = { version = "0.12.20", features = ["json"] }
reqwest = { version = "0.12.22", features = ["json"] }
bitflags = "2.9.1"
async-recursion = "1.1.1"
md-5 = "0.10.6"

View file

@ -9,4 +9,4 @@ license.workspace = true
[dependencies]
pathbufd = "0.1.4"
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.23"
toml = "0.9.2"

View file

@ -7,7 +7,7 @@ repository.workspace = true
license.workspace = true
[dependencies]
ammonia = "4.1.0"
ammonia = "4.1.1"
chrono = "0.4.41"
markdown = "1.0.0"
hex_fmt = "0.3.0"