Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 7, 2024
1 parent 155897c commit 4332af1
Show file tree
Hide file tree
Showing 10 changed files with 125 additions and 102 deletions.
187 changes: 105 additions & 82 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ resolver = "2"

[workspace.dependencies]
async-trait = "0.1.77"
clap = { version = "4.4.18", features = ["derive"] }
opentelemetry = { version = "0.21.0", default-features = false, features = ["trace", "metrics"] }
clap = { version = "4.5.2", features = ["derive"] }
opentelemetry = { version = "0.22.0", default-features = false, features = ["trace", "metrics"] }
pretty_assertions = "1.4.0"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1"
2 changes: 1 addition & 1 deletion apps/handcraft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ path = "src/bin.rs"
handcraft-server = { path = "../../libs/handcraft/handcraft-server" }
handcraft-server-derive = { path = "../../libs/handcraft/handcraft-server-derive" }
handcraft-models = { path = "../../libs/handcraft/handcraft-models" }
actix-web = "4.4.1"
actix-web = "4.5.1"
async-trait = { workspace = true }
futures-util = "0.3"
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
otel-collector:
image: otel/opentelemetry-collector-contrib:0.92.0
image: otel/opentelemetry-collector-contrib:0.96.0
command: [ "--config=/etc/otel-collector-config.yaml" ]
volumes:
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
Expand All @@ -11,6 +11,6 @@ services:

# https://www.jaegertracing.io/docs/next-release/getting-started/
jaeger:
image: jaegertracing/all-in-one:1.53.0
image: jaegertracing/all-in-one:1.55.0
ports:
- "16686:16686"
14 changes: 7 additions & 7 deletions libs/gesha-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ edition = "2021"
gesha-rust-types = { path = "../targets/gesha-rust-types" }
openapi-types = { path = "../../libs/openapi-types" }

chrono = "0.4.31"
chrono = "0.4.35"
console = "0.15.8"
futures = "0.3"
heck = "0.4.1"
indexmap = "2.1.0"
nu-ansi-term = "0.49.0"
indexmap = "2.2.5"
nu-ansi-term = "0.50.0"
opentelemetry = { workspace = true }
opentelemetry-otlp = { version = "0.14.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.21.2", features = ["rt-tokio"] }
opentelemetry-semantic-conventions = "0.13.0"
opentelemetry-otlp = { version = "0.15.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
opentelemetry-semantic-conventions = "0.14.0"
similar = "2.4.0"
tokio = { workspace = true }
tracing = { workspace = true }
tracing-opentelemetry = { version = "0.22", features = ["metrics"] }
tracing-opentelemetry = { version = "0.23", features = ["metrics"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2 changes: 1 addition & 1 deletion libs/handcraft/handcraft-models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
actix-web = "4.4.1"
actix-web = "4.5.1"
actix-multipart = "0.6.1"
futures-util = "0.3"
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion libs/handcraft/handcraft-server-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
proc-macro = true

[dependencies]
syn = "2.0.48"
syn = "2.0.52"
quote = "1.0.35"
proc-macro2 = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion libs/handcraft/handcraft-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2018"

[dependencies]
handcraft-models = { path = "../handcraft-models" }
actix-web = "4.4.1"
actix-web = "4.5.1"
async-trait = { workspace = true }
serde = { workspace = true }
2 changes: 1 addition & 1 deletion libs/openapi-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
indexmap = "2.1.0"
indexmap = "2.2.5"
heck = "0.4.1"
yaml-rust = "0.4.5"
2 changes: 1 addition & 1 deletion libs/targets/gesha-rust-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
heck = "0.4.1"
indexmap = "2.1.0"
indexmap = "2.2.5"

0 comments on commit 4332af1

Please sign in to comment.