mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
783aec942d
This keeps versions in one place so we can more easily ensure we upgrade crates together. V3_GIT_ORIGIN_REV_ID: 6a929bb6196c19a1f66a768585b669127035e9be
34 lines
846 B
TOML
34 lines
846 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 = { workspace = true }
|
|
indexmap = { workspace = true, features = ["serde"] }
|
|
lazy_static = { workspace = true }
|
|
ndc-models = { workspace = true }
|
|
nonempty = { workspace = true }
|
|
ref-cast = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json", "multipart"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
test-each = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
similar-asserts = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|