mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
2a24b3060a
<!-- Thank you for submitting this PR! :) --> ## Description Following the approach taken here: https://github.com/hasura/ndc-postgres/pull/402 This moves the `clippy` settings into the Cargo workspace file instead of passing them for each invocation. We enable all pedantic settings, run `cargo clippy --fix` to auto fix a few things, and then manually disable all other lints. Plenty of them are worth enabling and fixing in future IMO. --------- Co-authored-by: Samir Talwar <samir.talwar@hasura.io> V3_GIT_ORIGIN_REV_ID: aa0e6ccb8d72a7393e14b5c58b82077a67d9cb15
25 lines
389 B
TOML
25 lines
389 B
TOML
[package]
|
|
name = "hasura-authn-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
lang-graphql = { path = "../lang-graphql" }
|
|
open-dds = { path = "../open-dds" }
|
|
|
|
axum = "0.6.20"
|
|
http = "0.2"
|
|
schemars = "0.8.12"
|
|
serde = "1.0.183"
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|
|
|
|
[lints]
|
|
workspace = true
|