diff options
| author | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
| commit | f63f2b749aa0ff4efdc367b514aba08c23dd7c89 (patch) | |
| tree | e7d692aeff08cabc8d6d321aa05c4f0c25d7ca45 /Makefile.toml | |
| download | sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.tar.xz sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.zip | |
feat: initial release
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..1ede7b6 --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,33 @@ +[tasks.fmt] +args = ["fmt"] +command = "cargo" +toolchain = "nightly" +workspace = false + +[tasks.check] +args = ["check", "--all-features"] +command = "cargo" +workspace = false + +[tasks.clippy] +args = ["clippy", "--all-features"] +command = "cargo" +workspace = false + +[tasks.test] +args = ["test", "--all-features"] +command = "cargo" +workspace = false + +[tasks.checkf] +dependencies = ["fmt", "check"] +workspace = false + +[tasks.checkfc] +dependencies = ["fmt", "check", "clippy"] +workspace = false + +[tasks.run] +args = ["run", "--", "${@}"] +command = "cargo" +workspace = false |