graphql-engine/v3/crates/engine/Cargo.toml
Samir Talwar aa11947067 Disable benchmarks in unit tests. (#376)
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
2024-03-21 12:42:26 +00:00

76 lines
1.9 KiB
TOML

[package]
name = "engine"
version.workspace = true
edition.workspace = true
license.workspace = true
build = "build.rs"
[lib]
bench = false
[[bin]]
name = "engine"
path = "bin/engine/main.rs"
bench = false
[dependencies]
indexmap = { version = "2", features = ["serde"] }
thiserror = "1.0"
hasura-authn-core = { path = "../hasura-authn-core" }
lang-graphql = { path = "../lang-graphql" }
tracing-util = { path = "../tracing-util" }
ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0" }
open-dds = { path = "../open-dds" }
opendds-derive = { path = "../opendds-derive" }
# util = { path = "../util" }
serde = "1.0.152"
serde_json = "1.0.92"
reqwest = { version = "^0.11", features = ["json", "multipart"] }
opentelemetry = "0.20.0"
opentelemetry_sdk = "0.20.0"
schemars = { version = "0.8.12", features = ["smol_str"] }
async-trait = "0.1.67"
derive_more = "0.99.17"
base64 = "0.21.2"
transitive = "0.5.0"
lazy_static = "1.4.0"
strum = { version = "^0.25.0" }
strum_macros = { version = "^0.25.2" }
itertools = "0.10.5"
url = "2.4.1"
futures = "0.3.29"
# dependencies for authentication and execute
hasura-authn-webhook = { path = "../hasura-authn-webhook" }
hasura-authn-jwt = { path = "../hasura-authn-jwt" }
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1.26.0", features = [
"macros",
"rt-multi-thread",
"signal",
"parking_lot",
] }
axum = { version = "0.6.20" }
tower-http = { version = "0.4", features = ["trace", "cors"] }
uuid = "1.3.0"
bincode = "1.3.3"
regex = "1.7.3"
json_value_merge = "2.0"
async-recursion= "1.0.5"
nonempty = "0.8"
serde_path_to_error = "0.1.14"
anyhow = "1.0.75"
# Dependencies to build and run build.rs file
[build-dependencies]
build-data = "0.1.5" # To set short commit-sha at build time
[dev-dependencies]
goldenfile = "1.4.5"
tokio-test = "0.4.2"
criterion = { version = "0.4", features = ["html_reports", "async_tokio"] }
[[bench]]
name = "execute"
harness = false