Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #30 from vapor/swift4
Browse files Browse the repository at this point in the history
swift 4 preliminary
  • Loading branch information
loganwright authored Aug 7, 2017
2 parents 7f72c42 + 0b0ea84 commit d23bd51
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/Packages
/*.xcodeproj
Package.pins

Package.resolved
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// swift-tools-version:3.0
import PackageDescription

let package = Package(
Expand Down
19 changes: 19 additions & 0 deletions Package@swift-4.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// swift-tools-version:4.0
import PackageDescription

let package = Package(
name: "Crypto",
products: [
.library(name: "Crypto", targets: ["Crypto"]),
],
dependencies: [
// Module for generating random bytes and numbers.
.package(url: "https://github.com/vapor/random.git", .upToNextMajor(from: "1.2.0")),

// LibreSSL / OpenSSL module map for Swift.
.package(url: "https://github.com/vapor/ctls.git", .upToNextMajor(from: "1.1.0")),
],
targets: [
.target(name: "Crypto", dependencies: ["Random"]),
]
)

0 comments on commit d23bd51

Please # to comment.