Skip to content

Commit

Permalink
add test for atomicref issue
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Aug 28, 2024
1 parent b66ed19 commit 37e37da
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 83 deletions.
141 changes: 70 additions & 71 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2021"

[dependencies]
anyhow = "1.0.86"
thiserror = "1.0.61"
clap = { version = "4.5.7", features = ["derive"] }
ctrlc = "3.4.4"
thiserror = "1.0.63"
clap = { version = "4.5.16", features = ["derive"] }
ctrlc = "3.4.5"
futures = "0.3.30"
async-trait = "0.1.80"
async-trait = "0.1.81"
qdrant-client = "1.9.0"
rand = "0.8.5"
tokio = { version = "1.38.0", features = ["full"] }
log = "0.4.21"
env_logger = "0.11.3"
tokio = { version = "1.39.3", features = ["full"] }
log = "0.4.22"
env_logger = "0.11.5"
hdrhistogram = "7.5.4"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Leveraging the pre-built Docker images with
# cargo-chef and the Rust toolchain
# https://www.lpalmieri.com/posts/fast-rust-docker-builds/
FROM --platform=${BUILDPLATFORM:-linux/amd64} lukemathwalker/cargo-chef:latest-rust-1.78.0 AS chef
FROM --platform=${BUILDPLATFORM:-linux/amd64} lukemathwalker/cargo-chef:latest-rust-1.79.0 AS chef
WORKDIR /coach

FROM chef AS planner
Expand Down
Loading

0 comments on commit 37e37da

Please sign in to comment.