21 lines
512 B
Swift
21 lines
512 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "markdown-parsing",
|
|
platforms: [.macOS(.v13)],
|
|
dependencies: [
|
|
.package(url: "https://github.com/pointfreeco/swift-parsing.git", from: "0.14.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "markdown-parsing",
|
|
dependencies: [
|
|
.product(name: "Parsing", package: "swift-parsing")
|
|
]
|
|
)
|
|
]
|
|
)
|