This repository was archived by the owner on Jan 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +90
-0
lines changed
Expand file tree Collapse file tree 4 files changed +90
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.2
2+
3+ import PackageDescription
4+
5+ let package = Package (
6+ name: " DynamicCodableKit " ,
7+ platforms: [
8+ . iOS( . v8) ,
9+ . macOS( . v10_10) ,
10+ . tvOS( . v9) ,
11+ . watchOS( . v2)
12+ ] ,
13+ products: [
14+ . library(
15+ name: " DynamicCodableKit " ,
16+ targets: [ " DynamicCodableKit " ]
17+ ) ,
18+ ] ,
19+ targets: [
20+ . target(
21+ name: " DynamicCodableKit " ,
22+ dependencies: [ ]
23+ ) ,
24+ . testTarget(
25+ name: " DynamicCodableKitTests " ,
26+ dependencies: [ " DynamicCodableKit " ]
27+ ) ,
28+ ] ,
29+ swiftLanguageVersions: [ . v5]
30+ )
Original file line number Diff line number Diff line change 1+ // swift-tools-version:5.3
2+
3+ import PackageDescription
4+
5+ let package = Package (
6+ name: " DynamicCodableKit " ,
7+ platforms: [
8+ . iOS( . v8) ,
9+ . macOS( . v10_10) ,
10+ . tvOS( . v9) ,
11+ . watchOS( . v2)
12+ ] ,
13+ products: [
14+ . library(
15+ name: " DynamicCodableKit " ,
16+ targets: [ " DynamicCodableKit " ]
17+ ) ,
18+ ] ,
19+ targets: [
20+ . target(
21+ name: " DynamicCodableKit " ,
22+ dependencies: [ ]
23+ ) ,
24+ . testTarget(
25+ name: " DynamicCodableKitTests " ,
26+ dependencies: [ " DynamicCodableKit " ]
27+ ) ,
28+ ] ,
29+ swiftLanguageVersions: [ . v5]
30+ )
Original file line number Diff line number Diff line change 1+ // swift-tools-version: 5.4
2+
3+ import PackageDescription
4+
5+ let package = Package (
6+ name: " DynamicCodableKit " ,
7+ platforms: [
8+ . iOS( . v8) ,
9+ . macOS( . v10_10) ,
10+ . tvOS( . v9) ,
11+ . watchOS( . v2)
12+ ] ,
13+ products: [
14+ . library(
15+ name: " DynamicCodableKit " ,
16+ targets: [ " DynamicCodableKit " ]
17+ ) ,
18+ ] ,
19+ targets: [
20+ . target(
21+ name: " DynamicCodableKit " ,
22+ dependencies: [ ]
23+ ) ,
24+ . testTarget(
25+ name: " DynamicCodableKitTests " ,
26+ dependencies: [ " DynamicCodableKit " ]
27+ ) ,
28+ ] ,
29+ swiftLanguageVersions: [ . v5]
30+ )
You can’t perform that action at this time.
0 commit comments