mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-05-03 07:22:27 +00:00
39b34a159b
Since we already required Swift 5.5 for Concurrency (Xcode 13), it's natural to update the demo app to reflect latest SwiftUI changes, which makes the code neater and more expressive.
17 lines
374 B
Swift
17 lines
374 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Shared",
|
|
products: [
|
|
.library(name: "Shared", targets: ["Shared"]),
|
|
],
|
|
dependencies: [
|
|
],
|
|
targets: [
|
|
.target(name: "Shared", dependencies: []),
|
|
]
|
|
)
|