Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Examples/HelloWorldHummingbird/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
platforms: [.macOS(.v14)],
dependencies: [
.package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.1.0"),
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.2.0"),
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.4.0"),
],
targets: [
.executableTarget(name: "hello-world", dependencies: [.product(name: "Hummingbird", package: "hummingbird")])
Expand Down
2 changes: 1 addition & 1 deletion Examples/HelloWorldVapor/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
platforms: [.macOS(.v13)],
dependencies: [
.package(url: "https://github.com/vapor/vapor", .upToNextMajor(from: "4.102.0")),
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.2.0"),
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.4.0"),
],
targets: [.executableTarget(name: "hello-world", dependencies: [.product(name: "Vapor", package: "vapor")])]
)
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ swift-6.0.1-RELEASE_static-linux-0.0.1
Swift Container Plugin is distributed as a Swift Package Manager package. Use the `swift package` command to add it to your project:

```shell
swift package add-dependency https://github.com/apple/swift-container-plugin --from 0.1.0
swift package add-dependency https://github.com/apple/swift-container-plugin --from 0.4.0
```

Alternatively, append the following lines to `Package.swift`:

```swift
package.dependencies += [
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-container-plugin", from: "0.4.0"),
]
```

Expand Down