Update dependencies in preparation for some cloud work. (#972)

### What

Update dependencies in preparation for some cloud work, and move
dependency versions to the workspace.

### How

```
$ cargo update
```

V3_GIT_ORIGIN_REV_ID: a42ba0c8a1cb376280f9771abd7d1f4f7bf19b84
This commit is contained in:
Samir Talwar 2024-08-15 11:04:57 +02:00 committed by hasura-bot
parent fa9d91a1a5
commit a78978ab4c
4 changed files with 229 additions and 216 deletions

429
v3/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -66,6 +66,7 @@ anyhow = "1"
apollo-parser = "0.7"
async-graphql-parser = "7"
async-recursion = "1"
async-trait = "0.1"
axum = "0.6"
base64 = "0.22"
bincode = "1"
@ -77,10 +78,12 @@ convert_case = "0.6"
cookie = "0.18"
criterion = "0.5"
darling = "0.20"
datafusion = "41"
derive_more = "0.99"
diffy = "0.4"
env_logger = "0.11"
expect-test = "1"
futures = "0.3"
futures-util = "0.3"
goldenfile = "1"
graphql-parser = "0.4"

View File

@ -10,15 +10,13 @@ bench = false
[dependencies]
open-dds = { path = "../open-dds" }
metadata-resolve = { path = "../metadata-resolve" }
schemars = { version = "0.8.20", features = ["preserve_order"] }
schemars = { workspace = true, features = ["preserve_order"] }
serde = { workspace = true }
serde_json = { workspace = true }
[dev-dependencies]
goldenfile = "^1.7.1"
schemars = { version = "0.8.20", features = ["preserve_order"] }
goldenfile = { workspace = true }
[lints]
workspace = true

View File

@ -14,10 +14,11 @@ schema = { path = "../schema" }
tracing-util = { path = "../utils/tracing-util" }
ndc-models = { workspace = true }
async-trait = { workspace = true }
datafusion = { workspace = true, features = ["serde"] }
futures = { workspace = true }
indexmap = { workspace = true }
datafusion = { version = "41", features = ["serde"] }
async-trait = "0.1.81"
futures = "0.3.30"
serde = { workspace = true, features = ["rc"] }
serde_json = { workspace = true }
thiserror = { workspace = true }