graphql-engine/v3/crates/lang-graphql/Cargo.toml
Gil Mizrahi 0323da8144 create auth and utils subdirectories in crates, and move architecture information to a separate doc. (#534)
## Description

1. I've moved the architecture information we had in `CONTRIBUTING.md`
to a separate document `docs/architecture.md` so we can evolve both
separately in the future.
2. I've introduced a couple of sub directories: `utils` and `auth`, for
supporting crates that are not the core functionality of the engine so
it is easier to find the most relevant crates.

New structure:

```
crates
├── auth
│   ├── dev-auth-webhook
│   ├── hasura-authn-core
│   ├── hasura-authn-jwt
│   └── hasura-authn-webhook
├── custom-connector
├── engine
├── lang-graphql
├── metadata-schema-generator
├── open-dds
└── utils
    ├── opendds-derive
    ├── recursion_limit_macro
    └── tracing-util
```

V3_GIT_ORIGIN_REV_ID: e0e9394da2fcd911f329c48107a76f8492fa304c
2024-05-01 09:05:15 +00:00

57 lines
1.1 KiB
TOML

[package]
name = "lang-graphql"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
bench = false
[[bench]]
name = "lexer"
harness = false
[[bench]]
name = "parser"
harness = false
[[bench]]
name = "validation"
harness = false
[[bench]]
name = "schema_serde"
harness = false
[dependencies]
recursion_limit_macro = { path = "../utils/recursion_limit_macro" }
axum = "0.6.20"
http = "0.2"
indexmap = { version = "2", features = ["serde"] }
lexical-core = "0.8"
nonempty = { version = "0.10", features = ["serialize"] }
schemars = { version = "0.8.12", features = ["smol_str"] }
serde = "1.0.152"
serde_json = "1.0.92"
serde_with = "2.2.0"
smol_str = "0.1.23"
thiserror = "1.0"
[dev-dependencies]
apollo-parser = "0.7"
async-graphql-parser = "7.0"
bincode = "1.3.3"
bson = "2.10.0"
criterion = { version = "0.5", features = ["html_reports"] }
diffy = "0.3.0"
expect-test = "1.4"
graphql-parser = "0.4"
human_bytes = "0.4.1"
postcard = { version = "1.0.4", features = ["use-std"] }
pretty_assertions = "1.3.0"
rmp-serde = "1.1.1"
[lints]
workspace = true