-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackage.swift
More file actions
28 lines (27 loc) · 956 Bytes
/
Copy pathPackage.swift
File metadata and controls
28 lines (27 loc) · 956 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
25
26
27
28
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "Runway",
platforms: [.macOS(.v14)],
dependencies: [
// GPU terminal engine: libghostty via the GhosttyKit wrapper.
// Pinned to a specific commit — upstream's C API is still alpha, so we
// deliberately avoid tracking a moving branch.
.package(
url: "https://github.com/briannadoubt/GhosttyKit.git",
revision: "f3756807a61a42dba3dc1d866a1fd865f1ddfe21"
),
.package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.1")
],
targets: [
.executableTarget(
name: "Runway",
dependencies: [
.product(name: "GhosttyKit", package: "GhosttyKit"),
.product(name: "MarkdownUI", package: "swift-markdown-ui")
],
path: "Sources/Runway"
)
],
swiftLanguageModes: [.v6]
)