graphql-engine/v3/crates/auth/dev-auth-webhook/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

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"] }