forked from krzysztofzablocki/Sourcery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
19 lines (18 loc) · 930 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import PackageDescription
let package = Package(
name: "Sourcery",
targets: [
Target(name: "SourceryRuntime"),
Target(name: "sourcery", dependencies: ["SourceryRuntime"]),
],
dependencies: [
// https://github.com/kylef/Stencil/pull/84
.Package(url: "https://github.com/kylef/Commander.git", majorVersion: 0, minor: 6),
.Package(url: "https://github.com/kylef/PathKit.git", majorVersion: 0, minor: 8),
.Package(url: "https://github.com/jpsim/SourceKitten.git", majorVersion: 0, minor: 18),
.Package(url: "https://github.com/vknabel/SwiftTryCatch.git", majorVersion: 1, minor: 1),
.Package(url: "https://github.com/IBM-Swift/CommonCrypto.git", majorVersion: 0),
.Package(url: "https://github.com/SwiftGen/StencilSwiftKit.git", majorVersion: 2, minor: 3),
.Package(url: "https://github.com/tomlokhorst/XcodeEdit.git", majorVersion: 1)
]
)