From f87cbd6fde23467060a3f9238081d83648fb77f2 Mon Sep 17 00:00:00 2001 From: Lyndon Brown Date: Thu, 26 Nov 2020 19:30:37 +0000 Subject: [PATCH 1/2] add missing repo links to sub-crate cargo toml files such that links are available from their crates.io pages to the project repo. --- connect/Cargo.toml | 1 + core/Cargo.toml | 1 + metadata/Cargo.toml | 1 + playback/Cargo.toml | 1 + protocol/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/connect/Cargo.toml b/connect/Cargo.toml index 8677b811..ad8f91ff 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.3" authors = ["Paul Lietar "] description="The discovery and Spotify Connect logic for librespot" license="MIT" +repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies.librespot-core] diff --git a/core/Cargo.toml b/core/Cargo.toml index fbcd70ae..32a3ef1f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Paul Lietar "] build = "build.rs" description="The core functionality provided by librespot" license="MIT" +repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies.librespot-protocol] diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index a4ca2575..3b02159f 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.3" authors = ["Paul Lietar "] description="The metadata logic for librespot" license="MIT" +repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies] diff --git a/playback/Cargo.toml b/playback/Cargo.toml index 699a3f53..e3069a8b 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.3" authors = ["Sasha Hilton "] description="The audio playback logic for librespot" license="MIT" +repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies.librespot-audio] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 4e59d7b3..641476cd 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Paul Liétar "] build = "build.rs" description="The protobuf logic for communicating with Spotify servers" license="MIT" +repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies] From 4708e0a2bf69e1540c22f88f8960cf3c45e269bf Mon Sep 17 00:00:00 2001 From: Lyndon Brown Date: Thu, 26 Nov 2020 19:31:51 +0000 Subject: [PATCH 2/2] cargo toml formatting fix for consistency --- connect/Cargo.toml | 4 ++-- core/Cargo.toml | 4 ++-- metadata/Cargo.toml | 4 ++-- playback/Cargo.toml | 4 ++-- protocol/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/connect/Cargo.toml b/connect/Cargo.toml index ad8f91ff..5326de5f 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -2,8 +2,8 @@ name = "librespot-connect" version = "0.1.3" authors = ["Paul Lietar "] -description="The discovery and Spotify Connect logic for librespot" -license="MIT" +description = "The discovery and Spotify Connect logic for librespot" +license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018" diff --git a/core/Cargo.toml b/core/Cargo.toml index 32a3ef1f..05fa95e7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -3,8 +3,8 @@ name = "librespot-core" version = "0.1.3" authors = ["Paul Lietar "] build = "build.rs" -description="The core functionality provided by librespot" -license="MIT" +description = "The core functionality provided by librespot" +license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 3b02159f..8f3b4c93 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -2,8 +2,8 @@ name = "librespot-metadata" version = "0.1.3" authors = ["Paul Lietar "] -description="The metadata logic for librespot" -license="MIT" +description = "The metadata logic for librespot" +license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index e3069a8b..9b18b070 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -2,8 +2,8 @@ name = "librespot-playback" version = "0.1.3" authors = ["Sasha Hilton "] -description="The audio playback logic for librespot" -license="MIT" +description = "The audio playback logic for librespot" +license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 641476cd..35d65934 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -3,8 +3,8 @@ name = "librespot-protocol" version = "0.1.3" authors = ["Paul Liétar "] build = "build.rs" -description="The protobuf logic for communicating with Spotify servers" -license="MIT" +description = "The protobuf logic for communicating with Spotify servers" +license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018"