From 533e7f7f267c59eaed474856346312f2d7fa0bd6 Mon Sep 17 00:00:00 2001 From: Helio Frota <00hf11@gmail.com> Date: Tue, 26 Nov 2024 09:29:42 -0300 Subject: [PATCH] chore: General updates * Updates reqwest and closes #70 * Removes the version attribute from compose removing this warning message: `the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion` * Update rust to align with trustify * Update other dependencies --- Cargo.toml | 14 +++++++------- example/compose/compose-guac.yaml | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8489f8f..91072a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,25 +7,25 @@ resolver = "2" [workspace.dependencies] anyhow = "1.0.39" -async-nats = "0.35.1" +async-nats = "0.38" async-trait = "0.1" chrono = "0.4.23" clap = "4.5.0" colored_json = "5.0.0" env_logger = "0.11.1" -graphql_client = "0.14.0" +graphql_client = {git = "https://github.com/graphql-rust/graphql-client", rev = "683951f335b22317ab18dd170809ad57838ffe9d", package = "graphql_client"} humantime = "2.1.0" packageurl = "0.4.0" -prost = "0.12.3" -reqwest = "0.11" +prost = "0.13" +reqwest = "0.12" serde = "1.0.114" serde_json = "1.0.56" strum = "0.26.1" strum_macros = "0.26.1" -thiserror = "1" +thiserror = "2" tokio = "1.36.0" -tonic = { version = "0.11.0", features = ["tls"] } -tonic-build = "0.11.0" +tonic = { version = "0.12", features = ["tls"] } +tonic-build = "0.12" # Do not generate debuginfo for dependencies in `dev` and `test` profiles. This # save us some disk space diff --git a/example/compose/compose-guac.yaml b/example/compose/compose-guac.yaml index 01124e8..6a530c0 100644 --- a/example/compose/compose-guac.yaml +++ b/example/compose/compose-guac.yaml @@ -1,4 +1,4 @@ -version: "3" +# version: "3" services: # Neo4j is turned down for now since we are currently only using the in memory backend diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 86aa210..dd81467 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.77.2" +channel = "1.82.0" components = [ "rustfmt" ]