hyperoslo / hyperoslo/Imaginary

About Swift Package Manager dependency issue.

Open
#102 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Swift
Stars
610
Forks
65
PR merge metrics
No merged PRs in 30d

Description

In `Package.swift`, the `dependencies ` of `Cache` should not be `master`.

```
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "Imaginary",
products: [
.library(
name: "Imaginary",
targets: ["Imaginary"]),
],
dependencies: [
// FIXME: it should not depend on `master` branch.
.package(url: "https://github.com/hyperoslo/Cache", .branch("master"))
],
targets: [
.target(
name: "Imaginary",
dependencies: ["Cache"],
path: "Sources"
)
],
swiftLanguageVersions: [.v5]
)
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.