Skip to content

Commit

Permalink
📌 (tuist): Pin dependencies to specific versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Sep 19, 2023
1 parent 15e424d commit 70e248a
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions Tuist/Dependencies.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,34 @@ import ProjectDescription

let dependencies = Dependencies(
swiftPackageManager: [
.remote(url: "https://github.com/jpsim/Yams", requirement: .upToNextMajor(from: "5.0.5")),
.remote(url: "https://github.com/airbnb/lottie-ios", requirement: .upToNextMajor(from: "4.1.3")),
.remote(url: "https://github.com/gonzalezreal/swift-markdown-ui", requirement: .upToNextMajor(from: "2.0.2")),
.remote(url: "https://github.com/apple/swift-argument-parser", requirement: .upToNextMajor(from: "1.2.2")),
.remote(
url: "https://github.com/StarryInternet/CombineCoreBluetooth", requirement: .upToNextMajor(from: "0.3.1")),
url: "https://github.com/jpsim/Yams",
requirement: .exact("5.0.6")
),
.remote(
url: "https://github.com/michael94ellis/SwiftUIJoystick", requirement: .upToNextMajor(from: "1.0.3")),
url: "https://github.com/airbnb/lottie-ios",
requirement: .exact("4.3.0")
),
.remote(
url: "https://github.com/AudioKit/AudioKit", requirement: .upToNextMajor(from: "5.6.0")),
url: "https://github.com/gonzalezreal/swift-markdown-ui",
requirement: .exact("2.2.0")
),
.remote(
url: "https://github.com/apple/swift-argument-parser",
requirement: .exact("1.2.3")
),
.remote(
url: "https://github.com/StarryInternet/CombineCoreBluetooth",
requirement: .exact("0.6.0")
),
.remote(
url: "https://github.com/michael94ellis/SwiftUIJoystick",
requirement: .exact("1.5.0")
),
.remote(
url: "https://github.com/AudioKit/AudioKit",
requirement: .exact("5.6.0")
),
],
platforms: [.iOS, .macOS]
)

0 comments on commit 70e248a

Please sign in to comment.