mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
0323da8144
## 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
16 lines
218 B
TOML
16 lines
218 B
TOML
[package]
|
|
name = "recursion_limit_macro"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
bench = false
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0", features = ["full"] }
|
|
quote = "1.0"
|
|
|
|
[lints]
|
|
workspace = true
|