Skip to content

Commit 7f3df92

Browse files
authored
Add support for rendering docc (apple#89)
1 parent bcd0ee1 commit 7f3df92

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ DerivedData/
77
.swiftpm/config/registries.json
88
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
99
.netrc
10-
.swiftpm
10+
.swiftpm
11+
Package.resolved

Package.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ let package = Package(
1717
.library(name: "AsyncSequenceValidation", targets: ["AsyncSequenceValidation"]),
1818
.library(name: "_CAsyncSequenceValidationSupport", type: .static, targets: ["AsyncSequenceValidation"])
1919
],
20-
dependencies: [],
20+
dependencies: [
21+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
22+
],
2123
targets: [
2224
.target(
2325
name: "AsyncAlgorithms"),

0 commit comments

Comments
 (0)