File tree Expand file tree Collapse file tree 3 files changed +83
-1
lines changed Expand file tree Collapse file tree 3 files changed +83
-1
lines changed Original file line number Diff line number Diff line change 1
- // swift-tools-version:4 .0
1
+ // swift-tools-version:5 .0
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
//
4
4
// Package.swift
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:4.0
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+ //
4
+ // Package.swift
5
+ // Perfect-INIParser
6
+ //
7
+ // Created by Rockford Wei on 2017-04-25.
8
+ // Copyright © 2017 PerfectlySoft. All rights reserved.
9
+ //
10
+ //===----------------------------------------------------------------------===//
11
+ //
12
+ // This source file is part of the Perfect.org open source project
13
+ //
14
+ // Copyright (c) 2017 - 2018 PerfectlySoft Inc. and the Perfect project authors
15
+ // Licensed under Apache License v2.0
16
+ //
17
+ // See http://perfect.org/licensing.html for license information
18
+ //
19
+ //===----------------------------------------------------------------------===//
20
+ //
21
+
22
+ import PackageDescription
23
+ d
24
+ let package = Package (
25
+ name: " INIParser " ,
26
+ products: [
27
+ . library(
28
+ name: " INIParser " ,
29
+ targets: [ " INIParser " ] ) ,
30
+ ] ,
31
+ dependencies: [
32
+ ] ,
33
+ targets: [
34
+ . target(
35
+ name: " INIParser " ,
36
+ dependencies: [ ] ) ,
37
+ . testTarget(
38
+ name: " INIParserTests " ,
39
+ dependencies: [ " INIParser " ] ) ,
40
+ ]
41
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:4.2
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+ //
4
+ // Package.swift
5
+ // Perfect-INIParser
6
+ //
7
+ // Created by Rockford Wei on 2017-04-25.
8
+ // Copyright © 2017 PerfectlySoft. All rights reserved.
9
+ //
10
+ //===----------------------------------------------------------------------===//
11
+ //
12
+ // This source file is part of the Perfect.org open source project
13
+ //
14
+ // Copyright (c) 2017 - 2018 PerfectlySoft Inc. and the Perfect project authors
15
+ // Licensed under Apache License v2.0
16
+ //
17
+ // See http://perfect.org/licensing.html for license information
18
+ //
19
+ //===----------------------------------------------------------------------===//
20
+ //
21
+
22
+ import PackageDescription
23
+
24
+ let package = Package (
25
+ name: " INIParser " ,
26
+ products: [
27
+ . library(
28
+ name: " INIParser " ,
29
+ targets: [ " INIParser " ] ) ,
30
+ ] ,
31
+ dependencies: [
32
+ ] ,
33
+ targets: [
34
+ . target(
35
+ name: " INIParser " ,
36
+ dependencies: [ ] ) ,
37
+ . testTarget(
38
+ name: " INIParserTests " ,
39
+ dependencies: [ " INIParser " ] ) ,
40
+ ]
41
+ )
You can’t perform that action at this time.
0 commit comments