-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 760 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:6.1
import PackageDescription
let package = Package(
name: "MarkdownSyntax",
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(name: "MarkdownSyntax", targets: ["MarkdownSyntax"]),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-cmark", .upToNextMajor(from: "0.7.1"))
],
targets: [
.target(
name: "MarkdownSyntax",
dependencies: [
.product(name: "cmark-gfm", package: "swift-cmark"),
.product(name: "cmark-gfm-extensions", package: "swift-cmark"),
]
),
.testTarget(name: "MarkdownSyntaxTests", dependencies: ["MarkdownSyntax"]),
]
)