graphql-engine/v3/crates/hasura-authn-jwt/Cargo.toml
Daniel Harvey 2a24b3060a use clippy settings in Cargo workspace (#441)
<!-- 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
2024-04-08 10:14:11 +00:00

37 lines
949 B
TOML

[package]
name = "hasura-authn-jwt"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
bench = false
[dependencies]
hasura-authn-core = { path = "../hasura-authn-core" }
lang-graphql = { path = "../lang-graphql" }
open-dds = { path = "../open-dds" }
tracing-util = { path = "../tracing-util"}
axum = "0.6.20"
cookie = "0.17.0"
jsonptr = { version = "0.4.0" }
jsonwebtoken = "8.3.0"
lazy_static = "1.4.0"
reqwest = { version = "0.11.8", features = ["json"] }
schemars = { version = "0.8.12", features = ["url"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.92"
thiserror = "1.0"
url = "2.4.1"
[dev-dependencies]
indoc = "2"
jsonwebkey = { version = "0.3.5", features = ["generate", "jsonwebtoken","pkcs-convert"] }
mockito = {version = "1.1.0", default-features = false, features = []}
openssl = "0.10.64"
tokio = { version = "1.29.0", features = ["macros"] }
[lints]
workspace = true