diff options
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" |