Skip to content

Commit

Permalink
Added CabinetCrypto package
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Niedertscheider committed Sep 16, 2020
1 parent 9cfb78a commit 0a55395
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,21 @@ import PackageDescription
let package = Package(
name: "Cabinet",
products: [
.library(name: "Cabinet", targets: ["Cabinet"])
.library(name: "Cabinet", targets: ["Cabinet"]),
.library(name: "CabinetCrypto", targets: ["CabinetCrypto"])
],
dependencies: [
.package(url: "https://github.com/philprime/Flow", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Quick/Quick", .upToNextMajor(from: "2.2.0")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMajor(from: "8.0.7"))
],
targets: [
.target(name: "CabinetCrypto", dependencies: ["Flow"]),
.testTarget(name: "CabinetCryptoTests", dependencies: [
"CabinetCrypto",
"Quick",
"Nimble"
]),
.target(name: "Cabinet", dependencies: ["Flow"]),
.testTarget(name: "CabinetTests", dependencies: [
"Cabinet",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Quick
import Nimble
@testable import Cabinet
@testable import CabinetCrypto
import Foundation

class Data_SHA1Spec: QuickSpec {
Expand Down

0 comments on commit 0a55395

Please sign in to comment.