File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
LocalDebugging/MyCloudFunction Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import PackageDescription
5
5
let package = Package (
6
6
name: " swift-tencent-scf-runtime-samples " ,
7
7
platforms: [
8
- . macOS( . v10_13 ) ,
8
+ . macOS( . v10_15 ) ,
9
9
] ,
10
10
products: [
11
11
// Introductory example.
@@ -22,7 +22,7 @@ let package = Package(
22
22
dependencies: [
23
23
// This is the dependency on the swift-tencent-scf-runtime library.
24
24
// In real-world projects, this would say:
25
- // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git ", from: "0.1 .0")
25
+ // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime", from: "0.2 .0")
26
26
. package ( name: " swift-tencent-scf-runtime " , path: " ../.. " ) ,
27
27
] ,
28
28
targets: [
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ import PackageDescription
5
5
let package = Package (
6
6
name: " MyCloudFunction " ,
7
7
platforms: [
8
- . macOS( . v10_13 ) ,
8
+ . macOS( . v10_15 ) ,
9
9
] ,
10
10
products: [
11
11
. executable( name: " MyCloudFunction " , targets: [ " MyCloudFunction " ] ) ,
12
12
] ,
13
13
dependencies: [
14
14
// This is the dependency on the swift-tencent-scf-runtime library.
15
15
// In real-world projects this would say:
16
- // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git ", from: "0.1 .0")
16
+ // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime", from: "0.2 .0")
17
17
. package ( name: " swift-tencent-scf-runtime " , path: " ../../.. " ) ,
18
18
. package ( name: " Shared " , path: " ../Shared " ) ,
19
19
] ,
Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ import PackageDescription
33
33
let package = Package (
34
34
name : " my-cloud-function" ,
35
35
platforms : [
36
- .macOS (.v10_13 ),
36
+ .macOS (.v10_15 ),
37
37
],
38
38
products : [
39
39
.executable (name : " MyCloudFunction" , targets : [" MyCloudFunction" ]),
40
40
],
41
41
dependencies : [
42
- .package (url : " https://github.com/stevapple/swift-tencent-scf-runtime.git " , from : " 0.1 .0" ),
42
+ .package (url : " https://github.com/stevapple/swift-tencent-scf-runtime" , from : " 0.2 .0" ),
43
43
],
44
44
targets : [
45
45
.target (name : " MyCloudFunction" , dependencies : [
You can’t perform that action at this time.
0 commit comments