From 4e1bf7a0db8bd4a6c4555af5241d1f43d566c3ed Mon Sep 17 00:00:00 2001 From: Sasha Hilton Date: Wed, 6 Nov 2019 16:59:40 +0100 Subject: [PATCH] Add version numbers for all librespot crates --- Cargo.toml | 6 ++++++ connect/Cargo.toml | 3 +++ metadata/Cargo.toml | 4 +++- playback/Cargo.toml | 3 +++ 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9137df53..636709d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,16 +21,22 @@ doc = false [dependencies.librespot-audio] path = "audio" +version = "0.1.0" [dependencies.librespot-connect] path = "connect" +version = "0.1.0" [dependencies.librespot-core] path = "core" +version = "0.1.0" [dependencies.librespot-metadata] path = "metadata" +version = "0.1.0" [dependencies.librespot-playback] path = "playback" +version = "0.1.0" [dependencies.librespot-protocol] path = "protocol" +version = "0.1.0" [dependencies] base64 = "0.10" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index 78cad976..f4b4f534 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -7,10 +7,13 @@ license="MIT" [dependencies.librespot-core] path = "../core" +version = "0.1.0" [dependencies.librespot-playback] path = "../playback" +version = "0.1.0" [dependencies.librespot-protocol] path = "../protocol" +version = "0.1.0" [dependencies] base64 = "0.10" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 49c1e0c2..6983b4b1 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -9,9 +9,11 @@ license="MIT" byteorder = "1.3" futures = "0.1" linear-map = "1.2" -protobuf = "2.8.*" +protobuf = "2.8.1" [dependencies.librespot-core] path = "../core" +version = "0.1.0" [dependencies.librespot-protocol] path = "../protocol" +version = "0.1.0" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index c73688bf..d7d1c5b5 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -7,10 +7,13 @@ license="MIT" [dependencies.librespot-audio] path = "../audio" +version = "0.1.0" [dependencies.librespot-core] path = "../core" +version = "0.1.0" [dependencies.librespot-metadata] path = "../metadata" +version = "0.1.0" [dependencies] futures = "0.1"