Skip to content

Commit

Permalink
๐Ÿ’‰:: [#24] ๋ฒ„์ „ ๋ณ€๊ฒฝ
Browse files Browse the repository at this point in the history
  • Loading branch information
jjunhaa0211 committed Dec 28, 2023
1 parent fdf78dd commit b362407
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,24 @@ import PackageDescription
let package = Package(
name: "MindGymKit",
platforms: [
.iOS(.v13)
.iOS(.v15)
],
products: [
.library(name: "MindGym", targets: ["MindGym"])
.library(name: "MindGymKit", targets: ["MindGymKit"])
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.5.0"),
],
targets: [
.target(
name: "MindGym",
name: "MindGymKit",
dependencies: [
"RxSwift"
]
],
path: "MindGymKit"
),
.testTarget(
name: "MindGymKitTests",
dependencies: ["MindGym"]),
dependencies: ["MindGymKit"]),
]
)

0 comments on commit b362407

Please sign in to comment.