Skip to content

Commit

Permalink
updated cocilib dependancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Sazonov committed Jul 20, 2021
1 parent 450aa48 commit af691a8
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.4

import PackageDescription

Expand All @@ -7,10 +7,15 @@ let package = Package(
products: [
.library(
name: "SwiftOracle",
targets: ["SwiftOracle"]),
targets: ["SwiftOracle"]
),
],
dependencies: [
.package(url: "https://github.com/iliasaz/cocilib", from: "1.0.0"),
.package(url: "https://github.com/iliasaz/cocilib", from: "1.1.0"),
],
targets: [.target(name: "SwiftOracle", dependencies: ["cocilib"])]
targets: [
.target(name: "SwiftOracle",
dependencies: ["cocilib"]
)
]
)

0 comments on commit af691a8

Please sign in to comment.