From 967ac8f9a36fba48b0f61b8a9f8cac117451e763 Mon Sep 17 00:00:00 2001 From: Amber Blue Date: Tue, 22 Aug 2023 17:50:22 -0400 Subject: [PATCH 1/2] Adds required metadata --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 63ae56c..930153d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,9 @@ name = "estratto" version = "0.0.1" edition = "2021" +license = "MIT" +documentation = "https://docs.rs/estratto" +repository = "https://github.com/AmberJBlue/estratto/tree/main" authors = ["Amber Blue "] description = "estratto is a powerful and user-friendly Rust library designed for extracting rich audio features from digital audio signals." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From 3b96cc6fa02aafc95492c156d536fa99adf2862c Mon Sep 17 00:00:00 2001 From: Amber Blue Date: Tue, 22 Aug 2023 17:58:17 -0400 Subject: [PATCH 2/2] adds keywords and categories --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 930153d..47ce1f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,8 @@ name = "estratto" version = "0.0.1" edition = "2021" license = "MIT" +keywords = ["audio", "audio-analysis", "dsp", "feature-extraction", "audio-features"] +categories = ["multimedia::audio", "multimedia", "science"] documentation = "https://docs.rs/estratto" repository = "https://github.com/AmberJBlue/estratto/tree/main" authors = ["Amber Blue "]