Skip to content

Commit

Permalink
Merge pull request #36 from Walther/2024-05-chores
Browse files Browse the repository at this point in the history
2024-05-08-chores
  • Loading branch information
Walther authored Jun 7, 2024
2 parents 9b88da5 + dbf2c05 commit a405569
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions clovers-back/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.86"
aws-config = "0.56.1"
aws-sdk-s3 = "0.34.0"
axum = { version = "0.6.20", features = ["macros", "ws"] }
@@ -15,13 +15,13 @@ dotenv = "0.15.0"
futures = "0.3.30"
redis = { version = "0.22.3", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.115"
serde_json = "1.0.117"
sqlx = { version = "^0.6.3", features = [
"postgres",
"runtime-tokio-rustls",
"json",
] }
tokio = { version = "1.37", features = ["full"] }
tokio = { version = "1.38", features = ["full"] }
tower-http = { version = "0.4.4", features = ["trace", "cors"] }
tower_governor = "0.1.0"
tracing = "0.1"
2 changes: 1 addition & 1 deletion clovers-back/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Based on https://github.com/LukeMathWalker/cargo-chef

FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-latest AS chef
WORKDIR /app

FROM chef AS planner
6 changes: 3 additions & 3 deletions clovers-batch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,20 +6,20 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.86"
aws-config = "0.56.1"
aws-sdk-s3 = "0.34.0"
clovers-svc-common = { path = "../clovers-svc-common" }
dotenv = "0.15.0"
image = "0.24.9"
redis = { version = "0.22.3", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.115"
serde_json = "1.0.117"
sqlx = { version = "^0.6.3", features = [
"postgres",
"runtime-tokio-rustls",
"json",
] }
tokio = { version = "1.37", features = ["full"] }
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
2 changes: 1 addition & 1 deletion clovers-batch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Based on https://github.com/LukeMathWalker/cargo-chef

FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-latest AS chef
WORKDIR /app

FROM chef AS planner
6 changes: 3 additions & 3 deletions clovers-preview/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,18 +6,18 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.86"
clovers-svc-common = { path = "../clovers-svc-common" }
dotenv = "0.15.0"
image = "0.24.9"
redis = { version = "0.22.3", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.115"
serde_json = "1.0.117"
sqlx = { version = "^0.6.3", features = [
"postgres",
"runtime-tokio-rustls",
"json",
] }
tokio = { version = "1.37", features = ["full"] }
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
2 changes: 1 addition & 1 deletion clovers-preview/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Based on https://github.com/LukeMathWalker/cargo-chef

FROM lukemathwalker/cargo-chef:latest-rust-1.75 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-latest AS chef
WORKDIR /app

FROM chef AS planner
6 changes: 3 additions & 3 deletions clovers-svc-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.86"
aws-config = "0.56.1"
aws-sdk-s3 = "0.34.0"
clovers = { git = "https://github.com/Walther/clovers/", rev = "c1d1f41bc764db50ce79eec7d75d464d2943b815", default-features = false, features = [
@@ -15,12 +15,12 @@ clovers = { git = "https://github.com/Walther/clovers/", rev = "c1d1f41bc764db50
"traces",
] }
dotenv = "0.15.0"
palette = { version = "0.7.5", features = ["serializing"] }
palette = { version = "0.7.6", features = ["serializing"] }
rand = { version = "0.8.5", features = ["small_rng"], default-features = false }
rayon = "1.10.0"
redis = { version = "0.22.3", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.115"
serde_json = "1.0.117"
sqlx = { version = "^0.6.3", features = [
"postgres",
"uuid",

0 comments on commit a405569

Please sign in to comment.