diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-01-04 22:48:02 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-01-04 22:48:02 +0100 |
| commit | 200f8064e1b1b96acc7d4a6f0f8321b2da5c2830 (patch) | |
| tree | a0d5d76b1d6604be8eaab31d6e9eef0a01660e68 /evc/Cargo.toml | |
| parent | 23d6c2d3b56145999c14596733853bc6de49eff3 (diff) | |
| download | video-codec-experiments-200f8064e1b1b96acc7d4a6f0f8321b2da5c2830.tar video-codec-experiments-200f8064e1b1b96acc7d4a6f0f8321b2da5c2830.tar.bz2 video-codec-experiments-200f8064e1b1b96acc7d4a6f0f8321b2da5c2830.tar.zst | |
rename thing
Diffstat (limited to 'evc/Cargo.toml')
| -rw-r--r-- | evc/Cargo.toml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/evc/Cargo.toml b/evc/Cargo.toml index 7a1178b..9669d1c 100644 --- a/evc/Cargo.toml +++ b/evc/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "evc" +name = "libreschmux" version = "0.1.0" edition = "2021" @@ -9,3 +9,16 @@ anyhow = "1.0.66" log = "0.4.17" env_logger = "0.10.0" rustdct = "0.7.1" +indicatif = "*" + +[[bin]] +path = "src/bin/encode.rs" +name = "reschmux-encode" + +[[bin]] +path = "src/bin/decode.rs" +name = "reschmux-decode" + +[[bin]] +path = "src/bin/info.rs" +name = "reschmux-info" |