diff --git a/Cargo.toml b/Cargo.toml index ba397b9..588ee4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ keywords = [ "quickview", "data", "query", "sql", "datafusion" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aws-config = "0.55" -aws-sdk-glue = "0.28" -aws-types = "0.55" +aws-config = "1.1" +aws-sdk-glue = "1.22" +aws-types = "1.1" chrono = "0.4" clap = { version = "4.5", features = ["derive"] } datafusion = { version = "36.0", features = ["avro"] } @@ -24,7 +24,7 @@ futures = "0.3" glob = "0.3" object_store = { version = "0.9", features = ["aws", "gcp"] } regex = "1.10" -tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } +tokio = { version = "1.36", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } url = "2.5" [dev-dependencies] diff --git a/Dockerfile b/Dockerfile index e1d5172..4bb8780 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM rust:1.73 as builder +FROM rust:1.77 as builder WORKDIR /usr/src/qv COPY ./Cargo.toml ./Cargo.toml