Version 0.9.0

This commit is contained in:
Franco Meloni 2019-04-19 09:44:34 +01:00
parent bd7851fa4a
commit ee237eaefc
1 changed files with 5 additions and 5 deletions

View File

@ -19,10 +19,10 @@ let package = Package(
.package(url: "https://github.com/kareman/SwiftShell", from: "4.1.0"), .package(url: "https://github.com/kareman/SwiftShell", from: "4.1.0"),
.package(url: "https://github.com/orta/PackageConfig.git", from: "0.0.1"), .package(url: "https://github.com/orta/PackageConfig.git", from: "0.0.1"),
// Dev Dependencies for testing.setup // Dev Dependencies for testing.setup
.package(url: "https://github.com/Quick/Nimble", from: "7.3.1"), // dev // .package(url: "https://github.com/Quick/Nimble", from: "7.3.1"), // dev
.package(url: "https://github.com/f-meloni/TestSpy", from: "0.3.1"), // dev // .package(url: "https://github.com/f-meloni/TestSpy", from: "0.3.1"), // dev
.package(url: "https://github.com/orta/Komondor.git", from: "1.0.0"), // dev // .package(url: "https://github.com/orta/Komondor.git", from: "1.0.0"), // dev
.package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.35.8"), // dev // .package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.35.8"), // dev
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
@ -35,7 +35,7 @@ let package = Package(
name: "Rocket", name: "Rocket",
dependencies: ["Yams", "Logger", "PackageConfig", "RocketLib"] dependencies: ["Yams", "Logger", "PackageConfig", "RocketLib"]
), ),
.testTarget(name: "RocketTests", dependencies: ["RocketLib", "Nimble", "TestSpy"]), // dev // .testTarget(name: "RocketTests", dependencies: ["RocketLib", "Nimble", "TestSpy"]), // dev
] ]
) )