diff --git a/Cargo.toml b/Cargo.toml index c62b7bc5..fa5da5c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,3 +98,6 @@ assets = [ ["contrib/librespot.service", "lib/systemd/system/", "644"], ["contrib/librespot.user.service", "lib/systemd/user/", "644"] ] + +[workspace.package] +rust-version = "1.74" diff --git a/audio/Cargo.toml b/audio/Cargo.toml index f13ba679..713a499b 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-audio" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul Lietar "] description = "The audio fetching logic for librespot" license = "MIT" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index 8e253e51..bb055db1 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-connect" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul Lietar "] description = "The discovery and Spotify Connect logic for librespot" license = "MIT" diff --git a/core/Cargo.toml b/core/Cargo.toml index 7fca0094..93357f93 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-core" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul Lietar "] build = "build.rs" description = "The core functionality provided by librespot" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 12cb13cd..863f5d8f 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-discovery" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul Lietar "] description = "The discovery logic for librespot" license = "MIT" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index b3e32c95..813be783 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-metadata" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul Lietar "] description = "The metadata logic for librespot" license = "MIT" diff --git a/oauth/Cargo.toml b/oauth/Cargo.toml index 5dddedcb..3d52555e 100644 --- a/oauth/Cargo.toml +++ b/oauth/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-oauth" version = "0.5.0" -rust-version = "1.73" +rust-version.workspace = true authors = ["Nick Steel "] description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token" license = "MIT" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index 03e25566..4a9f3109 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-playback" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Sasha Hilton "] description = "The audio playback logic for librespot" license = "MIT" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index ec2496c6..60c48866 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "librespot-protocol" version = "0.5.0" -rust-version = "1.74" +rust-version.workspace = true authors = ["Paul LiƩtar "] build = "build.rs" description = "The protobuf logic for communicating with Spotify servers"