mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
5a0102b407
I am struggling to diagnose some errors and `.unwrap` is not helping, as it doesn't properly capture stack traces or anything else that might be useful. `anyhow` was built for this. Let's use it. I had to convert `SessionError` to a real `Error`, which I don't think is a bad thing. V3_GIT_ORIGIN_REV_ID: 3b8a70bb87e12e7b9e39515cd5f769fbd2cbfb39
22 lines
363 B
TOML
22 lines
363 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"
|