-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
33 lines (32 loc) · 944 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "scribe",
platforms: [
.macOS("14.0")
],
products: [
.library(name: "ScribeCore", targets: ["ScribeCore"])
],
dependencies: [
/*
Below are Package dependencies but not for output. Comment out if not
needed for faster build times.
*/
.package(
url: "https://github.com/apple/swift-format.git",
from: "510.1.0"),
// View documentation locally with the following command
// swift package --disable-sandbox preview-documentation --target ScribeCore
.package(
url: "https://github.com/apple/swift-docc-plugin.git",
from: "1.3.0"),
],
targets: [
.target(
name: "ScribeCore"),
.testTarget(
name: "ScribeCoreTests",
dependencies: ["ScribeCore"]),
]
)