Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: grafbase/mongodb-data-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6d21b40944e05167afe58913aed206475b4f0c96
Choose a base ref
..
head repository: grafbase/mongodb-data-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f2a60637a6930f811e463f3e76a8cef2c1e193ed
Choose a head ref
Showing with 30 additions and 33 deletions.
  1. +27 −30 Cargo.lock
  2. +2 −2 Cargo.toml
  3. +1 −1 Dockerfile
57 changes: 27 additions & 30 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -12,10 +12,10 @@ keywords = ["mongodb"]
name = "mongodb-data-api"

[dependencies]
anyhow = "1.0.72"
anyhow = "1.0.75"
axum = { version = "0.6.20", features = ["tracing"] }
clap = { version = "4.3.21", features = ["derive", "env"] }
mongodb = { version = "2.6.0", features = ["tracing-unstable"] }
mongodb = { version = "2.7.0", features = ["tracing-unstable"] }
tokio = { version = "1.31.0", features = ["tokio-macros", "rt-multi-thread"] }
serde = { version = "1.0.183", features = ["derive"] }
tracing = "0.1"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.71
FROM rust:1.73
COPY . /usr/src/
WORKDIR "/usr/src"
RUN cargo build --release && mv target/release/mongodb-data-api /usr/local/ && rm -rf /usr/src