mirror of
https://github.com/vacp2p/zerokit.git
synced 2026-01-09 13:47:58 -05:00
Co-authored-by: vinhtc27 <vinhtc27@gmail.com> Co-authored-by: seemenkina <seemenkina@gmail.com> Co-authored-by: sydhds < sydhds@gmail.com>
24 lines
348 B
TOML
24 lines
348 B
TOML
[tasks.build]
|
|
command = "cargo"
|
|
args = ["build", "--release"]
|
|
|
|
[tasks.test]
|
|
command = "cargo"
|
|
args = ["test", "--release", "--", "--nocapture"]
|
|
|
|
[tasks.test_stateless]
|
|
command = "cargo"
|
|
args = [
|
|
"test",
|
|
"--release",
|
|
"--no-default-features",
|
|
"--features",
|
|
"stateless",
|
|
"--",
|
|
"--nocapture",
|
|
]
|
|
|
|
[tasks.bench]
|
|
command = "cargo"
|
|
args = ["bench"]
|