Unverified Commit b20ae8ef authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Fix resolver warning in generated cargo workspace (#3444)

This PR fixes the workspace resolver version warning in the SDK's
generated workspace `Cargo.toml` file.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent e6791567
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -313,6 +313,7 @@ tasks.register<Copy>("relocateChangelog") {
fun generateCargoWorkspace(services: AwsServices): String {
    return """
    |[workspace]
    |resolver = "2"
    |exclude = [${"\n"}${services.excludedFromWorkspace().joinToString(",\n") { "|    \"$it\"" }}
    |]
    |members = [${"\n"}${services.includedInWorkspace().joinToString(",\n") { "|    \"$it\"" }}