diff options
Diffstat (limited to '.cargo/config')
-rw-r--r-- | .cargo/config | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..e455201 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,8 @@ +[alias] +bf = "build --features ffmpeg" +rf = "run --features ffmpeg" +tf = "test --features ffmpeg" +bfr = "build --features ffmpeg --release" +rfr = "run --features ffmpeg --release" +tfr = "test --features ffmpeg --release" + |