graphql-engine/v3/crates/plan/Cargo.toml
Daniel Harvey e313123ed7 Move commands from sql to plan (#1188)
<!-- The PR description should answer 2 important questions: -->

### What

Move the function/procedure planning from `sql` to the shared OpenDD IR
pipeline in `plan`. This should be a no-op for `sql`

### How

Move code, fix type errors.

V3_GIT_ORIGIN_REV_ID: 7da797ffedbc40a44692670679aa176817f2c65e
2024-10-03 10:28:39 +00:00

26 lines
625 B
TOML

[package]
name = "plan"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
bench = false
[dependencies]
execute = { path = "../execute" }
graphql-ir = { path = "../graphql/ir" }
graphql-schema = { path = "../graphql/schema" }
hasura-authn-core = { path = "../auth/hasura-authn-core" }
metadata-resolve = {path = "../metadata-resolve" }
open-dds = { path = "../open-dds" }
plan-types = { path = "../plan-types" }
derive_more = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
reqwest = { workspace = true }
serde_json = { workspace = true }
[lints]
workspace = true