Skip to content

Commit 6f45596

Browse files
author
AverageHelper
committed
Added Package.swift
1 parent 06ec361 commit 6f45596

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "IDZSwiftCommonCrypto",
7+
products: [
8+
.library(
9+
name: "IDZSwiftCommonCrypto",
10+
targets: ["IDZSwiftCommonCrypto"]),
11+
],
12+
dependencies: [],
13+
targets: [
14+
.target(
15+
name: "IDZSwiftCommonCrypto",
16+
dependencies: []),
17+
.testTarget(
18+
name: "IDZSwiftCommonCryptoTests",
19+
dependencies: ["IDZSwiftCommonCrypto"]),
20+
]
21+
)

0 commit comments

Comments
 (0)