mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +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
24 lines
495 B
TOML
24 lines
495 B
TOML
[package]
|
|
name = "custom-connector"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "agent"
|
|
path = "src/bin/agent/main.rs"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0" }
|
|
indexmap = "2"
|
|
serde_json = "^1.0.92"
|
|
tokio = { version = "^1.26.0", features = ["macros", "parking_lot", "rt-multi-thread"] }
|
|
axum = "^0.6.9"
|
|
regex = "^1.7.3"
|
|
csv = "^1.2.2"
|
|
prometheus = "^0.13.3"
|