[tasks.bench-baseline]
description = "Run benchmarks and save results as the 'main' criterion baseline."
command = "cargo"
args = [
"bench",
"--all-features",
"--bench",
"dataport",
"--",
"--save-baseline",
"main",
]
[tasks.bench-compare]
description = "Run benchmarks and compare against the 'main' criterion baseline."
command = "cargo"
args = [
"bench",
"--all-features",
"--bench",
"dataport",
"--",
"--baseline",
"main",
]
[tasks.cov]
toolchain = "nightly"
command = "cargo"
args = [
"llvm-cov",
"test",
"--lcov",
"--output-path",
"coverage/lcov.info",
"--all-features",
"--all-targets",
"--show-missing-lines",
"--show-instantiations",
"--branch",
"--workspace",
]
[tasks.cov-html]
toolchain = "nightly"
command = "cargo"
args = [
"llvm-cov",
"test",
"--html",
"--color=always",
"--all-features",
"--all-targets",
"--show-missing-lines",
"--show-instantiations",
"--branch",
"--workspace",
]