mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +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
22 lines
444 B
TOML
22 lines
444 B
TOML
[package]
|
|
name = "dev-auth-webhook"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "dev-auth-webhook"
|
|
path = "src/main.rs"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
tracing-util = { path = "../../utils/tracing-util" }
|
|
|
|
anyhow = "1"
|
|
axum = "0.6.20"
|
|
http = "0.2"
|
|
serde_json = "1.0.108"
|
|
tokio = { version = "1.34.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
tower-http = { version = "0.4.4", features = ["trace"] }
|