mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
5fd6b6c03a
<!-- Thank you for submitting this PR! :) --> ## Description This somewhat resolves the `BooleanExpressionType` metadata type. There is a lot that is missing, but everything is behind a feature so I want to merge what is here before moving onto getting it working with the later parts of the pipeline. We'll start with a lot of duplication and then work to remove as much as we can. Functional no-op for users, the feature flag is not exposed to the actual binary. How to review this PR: - Check that any changes to existing code are cosmetic and naming-only to ensure this is a no-op - Look through the new resolve step and compare it to the [RFC](https://github.com/hasura/v3-engine/blob/main/rfcs/open-dd-expression-type-changes.md) and see if it is doing roughly what you might expect. - Don't get too bogged down in missing things / style stuff, there are definitely missing things and bad style. V3_GIT_ORIGIN_REV_ID: 24e3b3e72e62d0094db3b461cb8c6d359982755d
34 lines
735 B
TOML
34 lines
735 B
TOML
[package]
|
|
name = "metadata-resolve"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
hasura-authn-core = { path = "../auth/hasura-authn-core" }
|
|
lang-graphql = { path = "../lang-graphql" }
|
|
open-dds = { path = "../open-dds" }
|
|
|
|
derive_more = "0.99.17"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
lazy_static = "1.4.0"
|
|
ndc-models = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.2" }
|
|
nonempty = "0.10"
|
|
ref-cast = "1.0"
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
serde = "1.0.202"
|
|
serde_json = "1.0.116"
|
|
thiserror = "1.0"
|
|
url = "2.4.1"
|
|
|
|
[dev-dependencies]
|
|
test-each = "*"
|
|
anyhow = "*"
|
|
similar-asserts = "*"
|
|
|
|
[lints]
|
|
workspace = true
|