From 394320c7b7e6b2a0bb12748818cea7056cfcb24a Mon Sep 17 00:00:00 2001 From: Sasha Hilton Date: Wed, 6 Nov 2019 16:50:26 +0100 Subject: [PATCH] Add description and license to Cargo.toml for each crate --- audio/Cargo.toml | 2 ++ connect/Cargo.toml | 2 ++ core/Cargo.toml | 3 +++ metadata/Cargo.toml | 2 ++ playback/Cargo.toml | 2 ++ protocol/Cargo.toml | 2 ++ 6 files changed, 13 insertions(+) diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 3584f0a..3c1af9e 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -2,6 +2,8 @@ name = "librespot-audio" version = "0.1.0" authors = ["Paul Lietar "] +description="The audio fetching and processing logic for librespot" +license="MIT" [dependencies.librespot-core] path = "../core" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index d4354ea..78cad97 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -2,6 +2,8 @@ name = "librespot-connect" version = "0.1.0" authors = ["Paul Lietar "] +description="The discovery and Spotify Connect logic for librespot" +license="MIT" [dependencies.librespot-core] path = "../core" diff --git a/core/Cargo.toml b/core/Cargo.toml index 162147d..da64605 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -3,9 +3,12 @@ name = "librespot-core" version = "0.1.0" authors = ["Paul Lietar "] build = "build.rs" +description="The core functionality provided by librespot" +license="MIT" [dependencies.librespot-protocol] path = "../protocol" +version = "0.1.0" [dependencies] base64 = "0.10" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 51e4419..49c1e0c 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -2,6 +2,8 @@ name = "librespot-metadata" version = "0.1.0" authors = ["Paul Lietar "] +description="The metadata logic for librespot" +license="MIT" [dependencies] byteorder = "1.3" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index c9ac759..c73688b 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -2,6 +2,8 @@ name = "librespot-playback" version = "0.1.0" authors = ["Sasha Hilton "] +description="The audio playback logic for librespot" +license="MIT" [dependencies.librespot-audio] path = "../audio" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index e81d4d9..4c9a332 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -3,6 +3,8 @@ name = "librespot-protocol" version = "0.1.0" authors = ["Paul LiƩtar "] build = "build.rs" +description="The protobuf logic for communicating with Spotify servers" +license="MIT" [dependencies] protobuf = "2.8.1"