Skip to content

Commit

Permalink
chore: General updates
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
helio-frota committed Nov 26, 2024
1 parent 2cf484d commit 533e7f7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion example/compose/compose-guac.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.77.2"
channel = "1.82.0"
components = [ "rustfmt" ]

0 comments on commit 533e7f7

Please sign in to comment.