summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjakka <jakkadoujin@gmail.com>2025-06-19 12:29:13 +0300
committerjakka <jakkadoujin@gmail.com>2025-06-19 12:29:13 +0300
commitf891f1d379984215e90ebe0958f942836e800385 (patch)
tree366f7189ee2e7fc4f388fe998fb88e571881e177
parent08021b436704645bdbade03bd70403f60dd594fb (diff)
added more info in cargo.tomlv0.1.0
-rw-r--r--Cargo.lock40
-rw-r--r--Cargo.toml16
2 files changed, 30 insertions, 26 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 6e5f80a..3df01f5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -564,6 +564,26 @@ dependencies = [
]
[[package]]
+name = "flac-reencoder"
+version = "0.1.0"
+dependencies = [
+ "anyhow",
+ "clap",
+ "clap_complete",
+ "directories",
+ "flac-bound",
+ "futures-util",
+ "i24",
+ "libsql",
+ "md-5",
+ "metaflac",
+ "pin-utils",
+ "symphonia",
+ "tokio",
+ "tokio-util",
+]
+
+[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1511,26 +1531,6 @@ dependencies = [
]
[[package]]
-name = "reencoder"
-version = "0.1.0"
-dependencies = [
- "anyhow",
- "clap",
- "clap_complete",
- "directories",
- "flac-bound",
- "futures-util",
- "i24",
- "libsql",
- "md-5",
- "metaflac",
- "pin-utils",
- "symphonia",
- "tokio",
- "tokio-util",
-]
-
-[[package]]
name = "regex"
version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 3e0de73..d9c7b5a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,11 +1,13 @@
[package]
-name = "reencoder"
+name = "flac-reencoder"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/justjakka/reencoder/"
license = "BSD-3-Clause"
authors = ["jakka"]
description = "A tool for keeping your flacs up-to-date"
+categories = ["command-line-utilities"]
+keywords = ["flac", "audio"]
[dependencies]
anyhow = "1.0.98"
@@ -17,16 +19,18 @@ flac-bound = { version = "0.5.0", features = [
], default-features = false }
futures-util = "0.3.31"
i24 = "2.1.0"
-libsql = { version = "0.9.10", features = [
- "core",
- "sync",
-] }
+libsql = { version = "0.9.10", 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",
] }
-tokio = { version = "1.45.1", features = ["macros", "rt", "rt-multi-thread", "signal"] }
+tokio = { version = "1.45.1", features = [
+ "macros",
+ "rt",
+ "rt-multi-thread",
+ "signal",
+] }
tokio-util = "0.7.15"
#symphonia = { git = "https://github.com/pdeljanov/Symphonia.git", branch = "dev-0.6", default-features = false, features = ["flac"] }