Skip to content

Commit 02411e3

Browse files
committed
Add swift-markdown dependency to Package.swift
1 parent b3a03bb commit 02411e3

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

Iterate.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"pins" : [
3+
{
4+
"identity" : "swift-cmark",
5+
"kind" : "remoteSourceControl",
6+
"location" : "https://github.com/apple/swift-cmark.git",
7+
"state" : {
8+
"revision" : "f218e5d7691f78b55bfa39b367763f4612486c35",
9+
"version" : "0.3.0"
10+
}
11+
},
12+
{
13+
"identity" : "swift-markdown",
14+
"kind" : "remoteSourceControl",
15+
"location" : "https://github.com/apple/swift-markdown",
16+
"state" : {
17+
"revision" : "e4f95e2dc23097a1a9a1dfdfe3fe3ee44de77378",
18+
"version" : "0.3.0"
19+
}
20+
}
21+
],
22+
"version" : 2
23+
}

Package.swift

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@ let package = Package(
1414
targets: ["Iterate"]
1515
),
1616
],
17-
dependencies: [],
17+
dependencies: [
18+
.package(url: "https://github.com/apple/swift-markdown", from: "0.3.0"),
19+
],
1820
targets: [
1921
.target(
2022
name: "Iterate",
21-
dependencies: [],
23+
dependencies: [
24+
.product(name: "Markdown", package: "swift-markdown"),
25+
],
2226
path: "IterateSDK",
2327
exclude: ["Info.plist"],
2428
resources: [

0 commit comments

Comments
 (0)