Skip to content

Commit

Permalink
feat: update crates
Browse files Browse the repository at this point in the history
  • Loading branch information
ralvescosta committed May 15, 2024
1 parent 2490939 commit 979edc9
Show file tree
Hide file tree
Showing 9 changed files with 213 additions and 164 deletions.
341 changes: 195 additions & 146 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ members = [
]

[workspace.dependencies]
thiserror = { version = "1.0.59" }
serde = { version = "1.0.198" }
serde_json = { version = "1.0.116" }
thiserror = { version = "1.0.60" }
serde = { version = "1.0.202" }
serde_json = { version = "1.0.117" }
tokio = { version = "1.37.0" }
async-trait = { version = "0.1.80" }
tracing = { version = "0.1.40" }
Expand Down
8 changes: 4 additions & 4 deletions examples/http_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ migrator = {git = "ssh://git@github.com/tointernet/ruskit.git", rev = "v0.3.0",
health-readiness = {git = "ssh://git@github.com/tointernet/ruskit.git", rev = "v0.3.0"}

actix-web = { version = "4.5.1" }
serde = { version = "1.0.200" }
serde_json = { version = "1.0.116" }
serde = { version = "1.0.202" }
serde_json = { version = "1.0.117" }
opentelemetry = { version = "0.22" }
async-trait = { version = "0.1.77" }
async-trait = { version = "0.1.80" }
tracing = { version = "0.1.40" }
tokio = { version = "1.37.0", features = ["default", "rt-multi-thread", "macros", "signal"]}
utoipa = { version = "4.2.0" }
utoipa = { version = "4.2.3" }
validator = { version = "0.18.1" }
2 changes: 1 addition & 1 deletion health_readiness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ paho-mqtt = { version = "0.12.3", optional = true }
lapin = { version = "2.3.3", optional = true }

# postgres
deadpool-postgres = { version = "0.13.0", optional = true }
deadpool-postgres = { version = "0.13.2", optional = true }

4 changes: 2 additions & 2 deletions http_components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ actix-service = "2.0.2"
futures = "0.3.30"

# openapi
utoipa = { version = "4.2.0", optional = true }
utoipa = { version = "4.2.3", optional = true }

# validator
validator = { version = "0.18.1", features = ["derive"], optional = true }
Expand All @@ -40,7 +40,7 @@ otel = { path = "../otel", optional = true }
# metrics
opentelemetry-semantic-conventions = { version = "0.14", optional = true }
opentelemetry-prometheus = { version = "0.15", optional = true }
prometheus = { version = "0.13.3", optional = true }
prometheus = { version = "0.13.4", optional = true }

# health
health-readiness = { path = "../health_readiness", optional = true }
4 changes: 2 additions & 2 deletions http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ tracing = { workspace = true }
opentelemetry = { workspace = true }

# Swagger
utoipa = { version = "4.2.0", features = ["actix_extras"], optional = true }
utoipa-swagger-ui = { version = "6.0.0", features = ["actix-web"], optional = true }
utoipa = { version = "4.2.3", features = ["actix_extras"], optional = true }
utoipa-swagger-ui = { version = "7.0.1", features = ["actix-web"], optional = true }
4 changes: 2 additions & 2 deletions migrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ async-trait = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }

deadpool-postgres = { version = "0.13.0", optional = true }
deadpool-sqlite = { version = "0.8.0", optional = true }
deadpool-postgres = { version = "0.13.2", optional = true }
deadpool-sqlite = { version = "0.8.1", optional = true }
4 changes: 2 additions & 2 deletions secrets_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ mocks = ["dep:mockall"]
[dependencies]
async-trait = { workspace = true }
tracing = { workspace = true }
aws-config = { version = "1.2.0" }
aws-sdk-secretsmanager = { version = "1.22.0" }
aws-config = { version = "1.4.0" }
aws-sdk-secretsmanager = { version = "1.27.0" }
serde_json = { workspace = true }
thiserror = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions sql_pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tracing = { workspace = true }
thiserror = { workspace = true }

# PostgreSQL dep
deadpool-postgres = { version = "0.13.0", optional = true }
deadpool-postgres = { version = "0.13.2", optional = true }
tokio-postgres = { version = "0.7.10", features = ["with-chrono-0_4", "with-uuid-0_8"], optional = true }

# SQLite dep
deadpool-sqlite = { version = "0.8.0", optional = true }
deadpool-sqlite = { version = "0.8.1", optional = true }

0 comments on commit 979edc9

Please sign in to comment.