Skip to content

Commit

Permalink
Upgrade dependencies to latest stable versions
Browse files Browse the repository at this point in the history
This commit updates various dependencies to their latest stable versions, enhancing overall stability and addressing potential bugs. Key updates include sea-orm-migration to 1.1.2, thiserror to 2.0.5, time to 0.3.37, and clap to 4.5.23.
  • Loading branch information
friedemannsommer committed Dec 8, 2024
1 parent 2f0e384 commit 9411e40
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 46 deletions.
76 changes: 38 additions & 38 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ markup = { git = "https://github.com/utkarshkukreti/markup.rs", rev = "c1dc693e0
migration = { path = "migration" }
once_cell = "=1.20.2"
serde = "=1.0.215"
thiserror = "=2.0.3"
time = "=0.3.36"
thiserror = "=2.0.5"
time = "=0.3.37"
url = "=2.5.4"

[dependencies.actix-web]
Expand All @@ -41,7 +41,7 @@ version = "=0.10.1"
features = ["cookie-session"]

[dependencies.clap]
version = "=4.5.21"
version = "=4.5.23"
default-features = false
features = ["std", "color", "help", "usage", "error-context", "suggestions", "derive", "env", "cargo"]

Expand All @@ -51,7 +51,7 @@ default-features = false
features = ["v4"]

[dependencies.sea-orm]
version = "=1.1.1"
version = "=1.1.2"
default-features = false
features = ["sqlx-mysql", "sqlx-postgres", "runtime-actix-rustls"]

Expand All @@ -69,4 +69,4 @@ features = ["sync"]
lightningcss = "=1.0.0-alpha.61"
proc-macro2 = "=1.0.92"
quote = "=1.0.37"
time = { version = "=0.3.36", features = ["macros", "formatting"] }
time = { version = "=0.3.37", features = ["macros", "formatting"] }
4 changes: 2 additions & 2 deletions entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default-features = false
features = ["derive"]

[dependencies.sea-orm]
version = "=1.1.1"
version = "=1.1.2"
default-features = false
features = ["macros", "with-time", "with-uuid"]

Expand All @@ -24,6 +24,6 @@ default-features = false
features = ["v4", "serde"]

[dependencies.time]
version = "=0.3.36"
version = "=0.3.37"
default-features = false
features = ["std", "serde"]
2 changes: 1 addition & 1 deletion migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ name = "migration"
path = "src/lib.rs"

[dependencies.sea-orm-migration]
version = "=1.1.1"
version = "=1.1.2"
default-features = false

0 comments on commit 9411e40

Please sign in to comment.