mirror of
https://github.com/vacp2p/zerokit.git
synced 2025-02-25 20:55:34 +00:00
20 lines
373 B
TOML
20 lines
373 B
TOML
[tasks.build]
|
|
command = "cargo"
|
|
args = ["build", "--release"]
|
|
|
|
[tasks.test_default]
|
|
command = "cargo"
|
|
args = ["test", "--release"]
|
|
|
|
[tasks.test_stateless]
|
|
command = "cargo"
|
|
args = ["test", "--release", "--features", "stateless"]
|
|
|
|
[tasks.test_arkzkey]
|
|
command = "cargo"
|
|
args = ["test", "--release", "--features", "arkzkey"]
|
|
|
|
[tasks.bench]
|
|
command = "cargo"
|
|
args = ["bench"]
|