Skip to content

Commit

Permalink
Adding Shapeshifter Testing to Package File
Browse files Browse the repository at this point in the history
  • Loading branch information
consuelita committed May 24, 2018
1 parent d48af29 commit fa75ce7
Show file tree
Hide file tree
Showing 6 changed files with 1,348 additions and 1,071 deletions.
Binary file modified .DS_Store
Binary file not shown.
13 changes: 11 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,22 @@
"version": "0.5.3"
}
},
{
"package": "SwiftQueue",
"repositoryURL": "https://github.com/OperatorFoundation/SwiftQueue.git",
"state": {
"branch": null,
"revision": "047666d1e4d804d090ae9588aa5bfc9b77c800c3",
"version": "0.0.1"
}
},
{
"package": "Transport",
"repositoryURL": "https://github.com/OperatorFoundation/Transport.git",
"state": {
"branch": null,
"revision": "1bfcf07f796c7a22b5862a0953182bee0aaa2634",
"version": "0.0.3"
"revision": "1e49592a44568ffb735385575f85058394d24a65",
"version": "0.0.4"
}
}
]
Expand Down
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ let package = Package(
.library(
name: "Wisp",
targets: ["Wisp"]),
.library(
name: "ShapeshifterTesting",
targets: ["ShapeshifterTesting"])
],
dependencies: [
// Dependencies declare other packages that this package depends on.
Expand All @@ -22,20 +25,21 @@ let package = Package(
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "0.7.2"),
.package(url: "https://github.com/Bouke/HKDF.git", from: "3.0.1"),
.package(url: "https://github.com/OperatorFoundation/Elligator.git", from: "0.1.0"),
.package(url: "https://github.com/OperatorFoundation/SwiftQueue.git", from: "0.0.1")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.

.target(
name: "Meek",
dependencies: ["CryptoSwift", "Transport"]),
dependencies: ["CryptoSwift", "Transport", "SwiftQueue"]),
.testTarget(
name: "MeekTests",
dependencies: ["Meek", "ShapeshifterTesting"]),
.target(
name: "Wisp",
dependencies: ["CommonCrypto", "Sodium", "CryptoSwift", "HKDF", "Elligator", "Transport"]),
dependencies: ["CommonCrypto", "Sodium", "CryptoSwift", "HKDF", "Elligator", "Transport", "SwiftQueue"]),
.testTarget(
name: "WispTests",
dependencies: ["Wisp", "ShapeshifterTesting"]),
Expand Down
Loading

0 comments on commit fa75ce7

Please sign in to comment.