Skip to content

Commit d0f7790

Browse files
committed
chore(deps): fixed dependencies
1 parent 42c728e commit d0f7790

3 files changed

Lines changed: 21 additions & 41 deletions

File tree

Package.resolved

Lines changed: 11 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.7
22

33
import PackageDescription
44

@@ -12,18 +12,18 @@ let package = Package(
1212
.library(name: "TPPDFAsync", targets: ["TPPDFAsync"]),
1313
],
1414
dependencies: [
15-
.package(url: "https://github.com/techprimate/TPPDF", .upToNextMajor(from: "2.4.1")),
16-
.package(url: "https://github.com/Quick/Quick", .upToNextMajor(from: "v7.0.0")),
17-
.package(url: "https://github.com/Quick/Nimble", .upToNextMajor(from: "v12.0.0")),
15+
.package(url: "https://github.com/techprimate/TPPDF", from: "2.4.1"),
16+
//dev .package(url: "https://github.com/Quick/Quick", from: "7.0.0"),
17+
//dev .package(url: "https://github.com/Quick/Nimble", from: "12.0.0")
1818
],
1919
targets: [
2020
.target(name: "TPPDFAsync", dependencies: [
2121
"TPPDF"
2222
], path: "Sources"),
23-
.testTarget(name: "TPPDFAsyncTests", dependencies: [
24-
"TPPDFAsync",
25-
"Quick",
26-
"Nimble"
27-
]),
23+
//dev .testTarget(name: "TPPDFAsyncTests", dependencies: [
24+
//dev "TPPDFAsync",
25+
//dev "Quick",
26+
//dev "Nimble"
27+
//dev ]),
2828
]
2929
)

Tests/TPPDFAsyncTests/TPPDFAsyncTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Nimble
1212

1313
class TPPDFAsyncTest: QuickSpec {
1414

15-
override func spec() {
15+
override class func spec() {
1616
expect(true).to(beTruthy())
1717
}
1818
}

0 commit comments

Comments
 (0)