diff options
author | Aria Shrimpton <me@aria.rip> | 2024-01-23 12:57:33 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-01-23 12:57:37 +0000 |
commit | 1a9b3f80573898cb14aaff7a5b176ba700fef750 (patch) | |
tree | cda91cd70af2e4811ca8314ed102cf7d30434fb4 /src/Justfile | |
parent | 758ef1186549ae7c8256dcc3f4deec18818d6ff9 (diff) |
add justfile
Diffstat (limited to 'src/Justfile')
-rw-r--r-- | src/Justfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Justfile b/src/Justfile new file mode 100644 index 0000000..1a503ff --- /dev/null +++ b/src/Justfile @@ -0,0 +1,11 @@ +select PROJ: + cargo run -- --manifest-path tests/Cargo.toml -p {{PROJ}} select + +compare PROJ: + cargo run -- --manifest-path tests/Cargo.toml -p {{PROJ}} select --compare + +candidates PROJ: + cargo run -- --manifest-path tests/Cargo.toml -p {{PROJ}} candidates + +cost-model IMPL: + cargo run -- cost-model {{IMPL}} |