update sal references

This commit is contained in:
thijs
2025-09-11 11:50:22 +02:00
parent cad8a6d125
commit 750d9b17a3
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ toml = "0.7.3"
serde = { version = "1.0", features = ["derive"] }
redis = { version = "0.23.0", features = ["tokio-comp"] }
tokio = { version = "1.28.0", features = ["full"] }
sal = { git = "https://git.ourworld.tf/herocode/sal.git" }
sal-text = "0.1.0"
chacha20poly1305 = "0.10.1"
blake3 = "1.3.1"
csv = "1.1"

View File

@@ -1,5 +1,5 @@
use pulldown_cmark::{Parser, Options, html};
use sal::text;
use sal_text;
/// Fix a name to be used as a key
///
@@ -15,7 +15,7 @@ use sal::text;
/// The fixed name
pub fn name_fix(text: &str) -> String {
// Use the name_fix function from the SAL library
text::name_fix(text)
sal_text::name_fix(text)
}
/// Convert markdown to HTML