]> saetta.ns0.it Git - rust/zakform/commitdiff
Added field filters lowercase and capitalcase.
authorAndrea Zagli <azagli@libero.it>
Fri, 10 May 2024 10:14:45 +0000 (12:14 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 10 May 2024 10:14:45 +0000 (12:14 +0200)
Cargo.lock
Cargo.toml
src/filters.rs

index d156120208b68b74a8204177ba36a76b93dbb599..1691129e3bc92bd1cd28744eff2f1c521f04e34a 100644 (file)
@@ -761,6 +761,12 @@ dependencies = [
  "ahash 0.7.6",
 ]
 
+[[package]]
+name = "heck"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
 [[package]]
 name = "http"
 version = "0.2.9"
@@ -1925,6 +1931,7 @@ dependencies = [
  "chrono",
  "config",
  "gettext",
+ "heck",
  "lazy_static",
  "regex",
  "serde",
index 59194002d6644d5cf8cb4e13ad43ecb1db06caef..1b16c912ec6652d82e1d8f80424dbfc5c4b0e0bc 100644 (file)
@@ -14,6 +14,7 @@ chrono = { version = "0.4" }
 lazy_static = "1.4.0"
 gettext = "0.4.0"
 regex = "1.5"
+heck = "0.5"
 
 [dev-dependencies]
 config = "0.13"
index e6e628f76d47b8cbfc057e5798363d6313753a55..68f66f45201dd788db84f611bf3cdaf555b3fd1b 100644 (file)
@@ -1,3 +1,5 @@
+use heck::ToTitleCase;
+
 pub type Filter = fn(value: &String) -> String;
 
 pub fn filter_trim(value: &String) -> String {
@@ -7,3 +9,11 @@ pub fn filter_trim(value: &String) -> String {
 pub fn filter_uppercase(value: &String) -> String {
        value.to_uppercase()
 }
+
+pub fn filter_lowercase(value: &String) -> String {
+       value.to_lowercase()
+}
+
+pub fn filter_capitalcase(value: &String) -> String {
+       value.to_title_case()
+}