Skip to content

Commit eb4bcf2

Browse files
coenttbclaude
andcommitted
Add RFC 1035 dependency to Package.swift
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e0f6576 commit eb4bcf2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ extension String {
99

1010
extension Target.Dependency {
1111
static var rfc1123: Self { .target(name: .rfc1123) }
12+
static var rfc1035: Self { .product(name: "RFC_1035", package: "swift-rfc-1035") }
1213
}
1314

1415
let package = Package(
@@ -21,14 +22,13 @@ let package = Package(
2122
.library(name: .rfc1123, targets: [.rfc1123]),
2223
],
2324
dependencies: [
24-
// Add RFC dependencies here as needed
25-
// .package(url: "https://github.com/swift-web-standards/swift-rfc-1123.git", branch: "main"),
25+
.package(url: "https://github.com/swift-web-standards/swift-rfc-1035.git", branch: "main"),
2626
],
2727
targets: [
2828
.target(
2929
name: .rfc1123,
3030
dependencies: [
31-
// Add target dependencies here
31+
.rfc1035
3232
]
3333
),
3434
.testTarget(

0 commit comments

Comments
 (0)