File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "object" : {
3
+ "pins" : [
4
+ {
5
+ "package" : " swift-crypto" ,
6
+ "repositoryURL" : " https://github.com/apple/swift-crypto.git" ,
7
+ "state" : {
8
+ "branch" : null ,
9
+ "revision" : " 3bea268b223651c4ab7b7b9ad62ef9b2d4143eb6" ,
10
+ "version" : " 1.1.6"
11
+ }
12
+ }
13
+ ]
14
+ },
15
+ "version" : 1
16
+ }
Original file line number Diff line number Diff line change @@ -15,13 +15,17 @@ let package = Package(
15
15
dependencies: [
16
16
// Dependencies declare other packages that this package depends on.
17
17
// .package(url: /* package url */, from: "1.0.0"),
18
+ . package ( url: " https://github.com/apple/swift-crypto.git " ,
19
+ from: " 1.1.2 " ) ,
18
20
] ,
19
21
targets: [
20
22
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
21
23
// Targets can depend on other targets in this package, and on products in packages this package depends on.
22
24
. target(
23
25
name: " Keychain " ,
24
- dependencies: [ ] ) ,
26
+ dependencies: [
27
+ . product( name: " Crypto " , package : " swift-crypto " ) ,
28
+ ] ) ,
25
29
. testTarget(
26
30
name: " KeychainTests " ,
27
31
dependencies: [ " Keychain " ] ) ,
Original file line number Diff line number Diff line change 1
1
2
- import CryptoKit
2
+ import Crypto
3
3
import Foundation
4
4
5
5
You can’t perform that action at this time.
0 commit comments