Skip to content

Commit

Permalink
build: update the depdendencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloMicieli committed Sep 18, 2023
1 parent 59840e4 commit f6c7cd3
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install cargo make
run: cargo install cargo-make@0.36.13
run: cargo install cargo-make@0.37.1

- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install cargo make
run: cargo install cargo-make@0.36.13
run: cargo install cargo-make@0.37.1

- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
Expand Down
83 changes: 32 additions & 51 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ anyhow = "1.0.75"
async-trait = "0.1.73"
axum = "0.6.20"
axum-macros = "0.3.8"
chrono = { version = "0.4.26", features = ["serde"] }
clap = { version = "4.4.0", features = ["derive"] }
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.3", features = ["derive"] }
config = { version = "0.13.3", default-features = false, features = ["yaml"] }
dockertest = { git = "https://github.com/orcalabs/dockertest-rs", rev = "7e0a718", features = ["tls"] }
http = "0.2.9"
Expand All @@ -36,31 +36,31 @@ mime = "0.3.17"
once_cell = "1.18.0"
pretty_assertions = "1.4.0"
rand = "0.8.5"
regex = "1.9.4"
regex = "1.9.5"
reqwest = { version = "0.11.20", features = ["json"] }
rstest = "0.18.2"
rust_decimal = { version = "1.32.0", features = ["serde-with-float"] }
rust_decimal_macros = "1.32.0"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_derive = "1.0.188"
serde_json = "1.0.105"
serde_json = "1.0.107"
serde_urlencoded = "0.7.1"
slug = "0.1.4"
strum = "0.25.0"
strum_macros = "0.25.2"
thiserror = "1.0.47"
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["limit", "timeout"] }
tower-http = { version = "0.4.3", features = ["compression-gzip", "propagate-header", "request-id", "trace"] }
tower-http = { version = "0.4.4", features = ["compression-gzip", "propagate-header", "request-id", "trace"] }
tracing = "0.1.37"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter", "json"] }
url = { version = "2.4.0", features = ["serde"] }
url = { version = "2.4.1", features = ["serde"] }
uuid = { version = "1.4.1", features = ["serde", "v4"] }
validator = { version = "0.16.1", features = ["derive", "phone"] }
walkdir = "2.3.3"
walkdir = "2.4.0"

[workspace.dependencies.sqlx]
version = "0.7.1"
Expand Down

0 comments on commit f6c7cd3

Please sign in to comment.