mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
2cd9714e7f
Just a minor change to make tests more readable by avoiding `.unwrap()`. V3_GIT_ORIGIN_REV_ID: 2cc13b9750e24ea82dfefcc68a05ffd63e1b4b7c
37 lines
950 B
TOML
37 lines
950 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]
|
|
anyhow = "1"
|
|
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
|