Skip to content

Commit 2bf6b19

Browse files
committed
Added ScadeExtensions dependencies to CryptoSwift example.
1 parent 72dc805 commit 2bf6b19

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

UgCryptoSwift/Package.resolved

+30-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,38 @@
33
"pins": [
44
{
55
"package": "CryptoSwift",
6-
"repositoryURL": "git@github.com:krzyzanowskim/CryptoSwift.git",
6+
"repositoryURL": "https://github.com/krzyzanowskim/CryptoSwift.git",
77
"state": {
88
"branch": null,
9-
"revision": "8d4f6384e0a8cc41f2005247241dd553963a492a",
10-
"version": "1.4.1"
9+
"revision": "19b3c3ceed117c5cc883517c4e658548315ba70b",
10+
"version": "1.6.0"
11+
}
12+
},
13+
{
14+
"package": "ScadeExtensions",
15+
"repositoryURL": "https://github.com/scade-platform/ScadeExtensions",
16+
"state": {
17+
"branch": "main",
18+
"revision": "b00036782d4046a73e2588c27b92341d59b5b3ef",
19+
"version": null
20+
}
21+
},
22+
{
23+
"package": "Android",
24+
"repositoryURL": "https://github.com/scade-platform/swift-android.git",
25+
"state": {
26+
"branch": "android/24",
27+
"revision": "510ee0dacb085c532c330377d25dff6ad23c3b5f",
28+
"version": null
29+
}
30+
},
31+
{
32+
"package": "Java",
33+
"repositoryURL": "https://github.com/scade-platform/swift-java.git",
34+
"state": {
35+
"branch": "main",
36+
"revision": "6b2cf43f63cc5959978caee931c487d07f7d9c03",
37+
"version": null
1138
}
1239
}
1340
]

UgCryptoSwift/Package.swift

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ let package = Package(
2020
)
2121
],
2222
dependencies: [
23-
.package(url: "[email protected]:krzyzanowskim/CryptoSwift.git", from: "1.4.1")
23+
.package(name: "ScadeExtensions", url: "https://github.com/scade-platform/ScadeExtensions", .branch("main")),
24+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.4.1")
2425
],
2526
targets: [
2627
.target(
2728
name: "UgCryptoSwift",
28-
dependencies: ["CryptoSwift"],
29+
dependencies: ["CryptoSwift", "ScadeExtensions"],
2930
exclude: ["main.page"],
3031
swiftSettings: [
3132
.unsafeFlags(["-F", SCADE_SDK], .when(platforms: [.macOS, .iOS])),

0 commit comments

Comments
 (0)