Skip to content

Commit

Permalink
updating tuist dependency declaration to resolve CI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
heckj committed Dec 11, 2023
1 parent 4fdcf3d commit 12ada0f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/Tuist/Dependencies.swift
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import ProjectDescription

let packages: [Package] = [
.package(url: "https://github.com/y-crdt/yswift", from: "0.1.0"),
]
let dependencies = Dependencies(
swiftPackageManager: [
.remote(url: "https://github.com/y-crdt/yswift", requirement: .upToNextMajor(from: "0.1.0")),
],
swiftPackageManager: SwiftPackageManagerDependencies(
packages
),
platforms: [.iOS]
)

0 comments on commit 12ada0f

Please sign in to comment.