From d239e5dbe1c35553c7663b8079719f327a1ddfaa Mon Sep 17 00:00:00 2001 From: jakka Date: Sun, 15 Jun 2025 14:12:50 +0300 Subject: added final logic and cli flags --- Cargo.toml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 769ed5e..7de5ff6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,20 +1,31 @@ [package] name = "reencoder" -version = "0.1.0" +version = "0.0.1" edition = "2024" repository = "https://github.com/justjakka/reencoder/" license = "BSD-3-Clause" [dependencies] anyhow = "1.0.98" +clap = { version = "4.5.40", default-features = false, features = [ + "cargo", + "std", +] } directories = "6.0.0" -flac-bound = { version = "0.5.0", features = ["libflac-noogg"], default-features = false } +flac-bound = { version = "0.5.0", features = [ + "libflac-noogg", +], default-features = false } futures-util = "0.3.31" i24 = "2.1.0" -libsql = { version = "0.9.10", default-features = false, features = ["core", "sync"] } +libsql = { version = "0.9.10", default-features = false, features = [ + "core", + "sync", +] } md-5 = "0.10.6" metaflac = "0.2.8" pin-utils = "0.1.0" -symphonia = { version = "0.5.4", path = "../Symphonia/symphonia", default-features = false, features = ["flac"] } +symphonia = { version = "0.5.4", path = "../Symphonia/symphonia", default-features = false, features = [ + "flac", +] } tokio = { version = "1.45.1", features = ["macros", "rt", "rt-multi-thread"] } #symphonia = { git = "https://github.com/pdeljanov/Symphonia.git", branch = "dev-0.6", default-features = false, features = ["flac"] } -- cgit v1.3.1