diff options
| author | jakka <jakkadoujin@gmail.com> | 2025-06-15 14:12:50 +0300 |
|---|---|---|
| committer | jakka <jakkadoujin@gmail.com> | 2025-06-15 14:12:50 +0300 |
| commit | d239e5dbe1c35553c7663b8079719f327a1ddfaa (patch) | |
| tree | d4e766b6c0e38c745baf06d30c60a122c8dd1b72 /Cargo.toml | |
| parent | 11d428265b3f7f5541779ef2df24bfb17d7250aa (diff) | |
added final logic and cli flags
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -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"] } |
