Skip to content

Instantly share code, notes, and snippets.

@woolsweater
Created June 23, 2019 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woolsweater/4445808ec670110cefc34da095869976 to your computer and use it in GitHub Desktop.
Save woolsweater/4445808ec670110cefc34da095869976 to your computer and use it in GitHub Desktop.
Attempted update to package manifest for SourceKittenDaemon
// swift-tools-version:5.0
import PackageDescription
var package = Package(
name: "SourceKittenDaemon",
dependencies: [
.package(url: "https://github.com/Carthage/Commandant.git", Version(0, 12, 0)..<Version(0, 15, .max)),
.package(url: "https://github.com/jpsim/SourceKitten.git", .upToNextMajor(from: "0.21.0")),
.package(url: "https://github.com/envoy/Embassy.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/felix91gr/XcodeEdit.git", .upToNextMajor(from: "1.0.0")),
],
targets: [
.target(name: "SourceKittenDaemon", path: "Sources/SourceKittenDaemon"),
.target(
name: "sourcekittend",
dependencies: ["SourceKittenDaemon"],
path: "Sources/sourcekittend"),
.testTarget(
name: "SourceKittenDaemonTests",
dependencies: ["SourceKittenDaemon"],
path: "Tests",
exclude: ["Fixtures"]),
]
)
#if os(Linux)
package.dependencies.append(.package(url: "https://github.com/felix91gr/FileSystemWatcher.git",
.upToNextMajor(from: "1.0.0")))
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment