mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
748bb3abab
`cargo machete` is a very useful tool that figures out when you aren't using a dependency. I have run this locally to remove unused dependencies. I've also added a CI job to make sure we catch these in the future. Sometimes it reports false positives, e.g. when a dependency isn't used directly but in macro-generated code (e.g. with `strum`). I have added `"ignored"` clauses to the `Cargo.toml` files where appropriate. V3_GIT_ORIGIN_REV_ID: ed015089b695cec8eeb03ce455d6dd3cd312a016
34 lines
923 B
TOML
34 lines
923 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"] }
|