@@ -11,20 +11,15 @@ let package = Package(
11
11
. iOS( . v16)
12
12
] ,
13
13
products: [
14
- // Products define the executables and libraries a package produces, and make them visible to other packages.
15
14
. library(
16
15
name: " Keychain " ,
17
16
targets: [ " Keychain " ] ) ,
18
17
] ,
19
18
dependencies: [
20
- // Dependencies declare other packages that this package depends on.
21
- // .package(url: /* package url */, from: "1.0.0"),
22
19
. package ( url: " https://github.com/OperatorFoundation/KeychainMacOS " , branch: " release " ) ,
23
- . package ( url: " https://github.com/OperatorFoundation/KeychainTypes " , branch : " release " ) ,
20
+ . package ( url: " https://github.com/OperatorFoundation/KeychainTypes " , from : " 1.0.0 " ) ,
24
21
] ,
25
22
targets: [
26
- // Targets are the basic building blocks of a package. A target can define a module or a test suite.
27
- // Targets can depend on other targets in this package, and on products in packages this package depends on.
28
23
. target(
29
24
name: " Keychain " ,
30
25
dependencies: [ " KeychainMacOS " , " KeychainTypes " ] ) ,
@@ -38,20 +33,15 @@ let package = Package(
38
33
let package = Package (
39
34
name: " Keychain " ,
40
35
products: [
41
- // Products define the executables and libraries a package produces, and make them visible to other packages.
42
36
. library(
43
37
name: " Keychain " ,
44
38
targets: [ " Keychain " ] ) ,
45
39
] ,
46
40
dependencies: [
47
- // Dependencies declare other packages that this package depends on.
48
- // .package(url: /* package url */, from: "1.0.0"),
49
41
. package ( url: " https://github.com/OperatorFoundation/KeychainLinux " , branch: " release " ) ,
50
- . package ( url: " https://github.com/OperatorFoundation/KeychainTypes " , branch : " release " ) ,
42
+ . package ( url: " https://github.com/OperatorFoundation/KeychainTypes " , from : " 1.0.0 " ) ,
51
43
] ,
52
44
targets: [
53
- // Targets are the basic building blocks of a package. A target can define a module or a test suite.
54
- // Targets can depend on other targets in this package, and on products in packages this package depends on.
55
45
. target(
56
46
name: " Keychain " ,
57
47
dependencies: [
0 commit comments