Skip to content

Commit b237e1b

Browse files
committedDec 15, 2024
Updates packages
1 parent 5e6f99a commit b237e1b

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed
 

‎Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
"repositoryURL": "https://github.com/IBM-Swift/BlueECC.git",
1616
"state": {
1717
"branch": null,
18-
"revision": "baf6ed3fc1a622675f0041b4aff7c02dd1a93818",
19-
"version": "1.2.200"
18+
"revision": "1485268a54f8135435a825a855e733f026fa6cc8",
19+
"version": "1.2.201"
2020
}
2121
},
2222
{
2323
"package": "OpenCombine",
2424
"repositoryURL": "https://github.com/OpenCombine/OpenCombine.git",
2525
"state": {
2626
"branch": null,
27-
"revision": "9bba5081344163296ddf537048566b95513b8f39",
28-
"version": "0.11.0"
27+
"revision": "8576f0d579b27020beccbccc3ea6844f3ddfc2c2",
28+
"version": "0.14.0"
2929
}
3030
}
3131
]

‎Package.swift

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.10
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -9,41 +9,40 @@ let package = Package(
99
.macOS(.v10_15),
1010
],
1111
products: [
12-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1312
.library(
1413
name: "CloudyKit",
15-
targets: ["CloudyKit"]),
14+
targets: ["CloudyKit"]
15+
),
1616
],
1717
dependencies: [
1818
.package(
19-
name: "Cryptor",
2019
url: "https://github.com/IBM-Swift/BlueCryptor.git",
21-
from: "1.0.32"),
20+
from: "1.0.32"
21+
),
2222
.package(
23-
name: "CryptorECC",
2423
url: "https://github.com/IBM-Swift/BlueECC.git",
25-
from: "1.2.4"),
24+
from: "1.2.4"
25+
),
2626
.package(
27-
name: "OpenCombine",
2827
url: "https://github.com/OpenCombine/OpenCombine.git",
29-
from: "0.11.0"),
28+
from: "0.11.0"
29+
),
3030
],
3131
targets: [
32-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
33-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
3432
.target(
3533
name: "CloudyKit",
3634
dependencies: [
37-
"Cryptor",
38-
"CryptorECC",
39-
"OpenCombine",
35+
.product(name: "Cryptor", package: "BlueCryptor"),
36+
.product(name: "CryptorECC", package: "BlueECC"),
4037
.product(name: "OpenCombineFoundation", package: "OpenCombine"),
41-
]),
38+
]
39+
),
4240
.testTarget(
4341
name: "CloudyKitTests",
4442
dependencies: ["CloudyKit"],
4543
resources: [
4644
.copy("Assets"),
47-
]),
45+
]
46+
),
4847
]
4948
)

0 commit comments

Comments
 (0)
Please sign in to comment.