mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
8dc66fa758
V3_GIT_ORIGIN_REV_ID: 40af3675b9c3a230d7e70148797ce28e5b1e85cc
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.18.1"
|
|
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
|