Initial commit, code not working
This commit is contained in:
20
Package.swift
Normal file
20
Package.swift
Normal file
@@ -0,0 +1,20 @@
|
||||
// swift-tools-version:5.3
|
||||
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "hummingbird-mustache",
|
||||
products: [
|
||||
.library(name: "HummingbirdMustache", targets: ["HummingbirdMustache"]),
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "0.6.0"),
|
||||
],
|
||||
targets: [
|
||||
.target(name: "HummingbirdMustache", dependencies: [
|
||||
.product(name: "Hummingbird", package: "hummingbird")
|
||||
]),
|
||||
.testTarget(name: "HummingbirdMustacheTests", dependencies: ["HummingbirdMustache"]),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user