Skip to content

Commit

Permalink
build: update depedency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloMicieli committed Jan 28, 2024
1 parent a1f9609 commit d40688b
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install cargo make
run: cargo install [email protected].7
run: cargo install [email protected].8

- 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 [email protected].7
run: cargo install [email protected].8

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

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ anyhow = "1.0.79"
async-trait = "0.1.77"
axum = "0.7.4"
axum-macros = "0.4.1"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.16", features = ["derive"] }
chrono = { version = "0.4.33", features = ["serde"] }
clap = { version = "4.4.18", features = ["derive"] }
config = { version = "0.13.4", default-features = false, features = ["yaml"] }
csv = "1.3.0"
dockertest = { version = "0.4.0", features = ["tls"] }
Expand All @@ -40,27 +40,27 @@ lazy_static = "1.4.0"
mime = "0.3.17"
pretty_assertions = "1.4.0"
rand = "0.8.5"
regex = "1.10.2"
regex = "1.10.3"
reqwest = { version = "0.11.23", features = ["json"] }
rstest = "0.18.2"
rust_decimal = { version = "1.33.1", features = ["serde-with-float"] }
rust_decimal_macros = "1.33.1"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_derive = "1.0.195"
serde_json = "1.0.111"
serde = { version = "1.0.196", features = ["derive"] }
serde_derive = "1.0.196"
serde_json = "1.0.112"
serde_urlencoded = "0.7.1"
slug = "0.1.5"
strum = "0.25.0"
strum_macros = "0.25.3"
strum = "0.26.1"
strum_macros = "0.26.1"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["limit", "timeout"] }
tower-http = { version = "0.5.0", features = ["compression-gzip", "propagate-header", "request-id", "trace"] }
tower-http = { version = "0.5.1", features = ["compression-gzip", "propagate-header", "request-id", "trace"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "json", "registry", "std"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.6.1", features = ["serde", "v4"] }
uuid = { version = "1.7.0", features = ["serde", "v4"] }
validator = { version = "0.16.1", features = ["derive", "phone"] }
walkdir = "2.4.0"

Expand Down

0 comments on commit d40688b

Please sign in to comment.