Skip to content

Commit 1a57302

Browse files
Create Package.swift
1 parent 847da7e commit 1a57302

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Package.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import PackageDescription
2+
3+
var package = Package(
4+
name: "Cache",
5+
products: [
6+
.library(
7+
name: "Cache",
8+
targets: ["Cache"]
9+
)
10+
],
11+
dependencies: [
12+
.package(url: "https://github.com/onmyway133/SwiftHash.git", .upToNextMinor(from: "2.0.0")),
13+
],
14+
targets: [
15+
.target(
16+
name: "Cache",
17+
dependencies: ["Cache"]
18+
)
19+
]
20+
)

0 commit comments

Comments
 (0)