mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-18 03:01:38 +03:00
14 lines
328 B
Swift
14 lines
328 B
Swift
// swift-tools-version:5.7
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "NvimServer",
|
|
platforms: [.macOS(.v13)],
|
|
products: [
|
|
.library(name: "NvimServerTypes", targets: ["NvimServerTypes"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [.target(name: "NvimServerTypes", dependencies: [], path: "NvimServerTypes")]
|
|
)
|