Skip to content

Commit

Permalink
Merge pull request #60 from spiralover/refactor/app
Browse files Browse the repository at this point in the history
bump: to latest crates versions
  • Loading branch information
Ahmard authored Sep 2, 2024
2 parents 7a4ba35 + e6baba8 commit 0e3c760
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 65 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Medullah Changelog
medullah-web changelog file

## 0.17.3 (2024-09-02)
* bump: to latest crates versions

## 0.17.2 (2024-09-02)
* feat(rabbitmq): expose option structs

Expand Down
142 changes: 83 additions & 59 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.17.2"
version = "0.17.3"
edition = "2021"
license = "MIT"
description = "Micro-Framework Base on Ntex"
Expand Down Expand Up @@ -41,12 +41,12 @@ deadpool-redis = { version = "0.16.0", features = ["rt_tokio_1"], optional = tru
toml = { version = "0.8.19" }
uuid = { version = "1.10.0", features = ["v4", "serde"] }
log = { version = "0.4.22" }
serde = { version = "1.0.208", features = ["derive"] }
tokio = { version = "1.39.3", features = ["rt-multi-thread", "macros", "time"] }
serde = { version = "1.0.209", features = ["derive"] }
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "time"] }
chrono = { version = "0.4.38", features = ["serde"] }
dotenv = { version = "0.15.0" }
env_logger = { version = "0.11.5" }
serde_json = { version = "1.0.120", features = ["raw_value"] }
serde_json = { version = "1.0.127", features = ["raw_value"] }
futures-util = { version = "0.3.30" }
base64 = { version = "0.22.1", optional = true }
subtle = { version = "2.6.1", optional = true }
Expand All @@ -61,7 +61,7 @@ ntex-files = { version = "2.0.0", optional = true }
ntex-multipart = { version = "2.0.0", optional = true }
r2d2 = { version = "0.8.10", optional = true }
ntex-cors = { version = "2.0.0" }
reqwest = { version = "0.12.5", features = ["json"], optional = true }
diesel = { version = "2.2.2", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"], optional = true }
reqwest = { version = "0.12.7", features = ["json"], optional = true }
diesel = { version = "2.2.3", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"], optional = true }
jsonwebtoken = { version = "9.3.0", optional = true }
validator = { version = "0.18.1", features = ["derive"], optional = true }

0 comments on commit 0e3c760

Please sign in to comment.