mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-07 08:13:18 +03:00
aa11947067
This means that we can pass arguments to the Criterion benchmarks because the test binaries do not try and run. For example, if you run this: ``` cargo bench -- --warm-up-time=1 --measurement-time=1 ``` … it will currently fail, because it will also pass these arguments to the tests. Disabling the benchmarks for the tests fixes this. V3_GIT_ORIGIN_REV_ID: 10fe0683b82c506e1a11b24ca0a0a4041e37b655
30 lines
742 B
TOML
30 lines
742 B
TOML
[package]
|
|
name = "hasura-authn-webhook"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
thiserror = "1.0"
|
|
serde = "1.0.183"
|
|
serde_json = "1.0.104"
|
|
serde_with = "2.2.0"
|
|
jsonwebtoken = "8.3.0"
|
|
reqwest = { version = "0.11.8", features = ["json"] }
|
|
axum = "0.6.9"
|
|
lazy_static = "1.4.0"
|
|
open-dds = { path = "../open-dds" }
|
|
hasura-authn-core = { path = "../hasura-authn-core" }
|
|
lang-graphql = { path = "../lang-graphql" }
|
|
schemars = { version = "0.8.12", features = ["smol_str", "url"] }
|
|
tracing-util = { path = "../tracing-util" }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|
|
mockito = {version = "1.1.0", default-features = false, features = []}
|
|
tokio = "1.29.0"
|
|
rand = "0.8.5"
|