Skip to content

Commit

Permalink
Merge pull request #110 from spiralover/refactor/regex
Browse files Browse the repository at this point in the history
refactor(regex): introduce case-sensitivity
  • Loading branch information
Ahmard authored Jan 20, 2025
2 parents e8c3785 + 2abb479 commit 025ed77
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 83 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "medullah-web"
version = "0.27.0"
version = "0.28.0"
edition = "2021"
license = "MIT"
description = "Micro-Framework Based on Ntex"
Expand Down Expand Up @@ -40,14 +40,14 @@ redis = { version = "0.27.6", default-features = false, optional = true, feature
] }
deadpool-redis = { version = "0.18.0", features = ["rt_tokio_1"], optional = true }

uuid = { version = "1.11.0", features = ["v4", "serde"] }
log = { version = "0.4.22" }
uuid = { version = "1.12.0", features = ["v4", "serde"] }
log = { version = "0.4.25" }
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros", "time"] }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "time"] }
chrono = { version = "0.4.39", features = ["serde"] }
dotenv = { version = "0.15.0" }
env_logger = { version = "0.11.6" }
serde_json = { version = "1.0.134", features = ["raw_value"] }
serde_json = { version = "1.0.137", features = ["raw_value"] }
futures-util = { version = "0.3.31" }
base64 = { version = "0.22.1", optional = true }
subtle = { version = "2.6.1", optional = true }
Expand All @@ -64,7 +64,7 @@ ntex-cors = { version = "2.0.0" }
reqwest = { version = "0.12.12", features = ["json"], optional = true }
diesel = { version = "2.2.6", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"], optional = true }
jsonwebtoken = { version = "9.3.0", optional = true }
validator = { version = "0.19.0", features = ["derive"], optional = true }
validator = { version = "0.20.0", features = ["derive"], optional = true }
strum = { version = "0.26.3", default-features = false, features = ["std"], optional = true }

medullah-multipart = { version = "^0.7", optional = true }
Loading

0 comments on commit 025ed77

Please sign in to comment.