-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
24 lines (22 loc) · 940 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version: 5.9
//
// Package.swift
//
//
// Created by 서지완 on 5/16/24.
//
import PackageDescription
let package = Package(
name: "PlacePackage",
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.5.0"),
.package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.0.1"),
.package(url: "https://github.com/Moya/Moya.git", from: "15.0.0"),
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.0.0"),
.package(url: "https://github.com/devxoul/Then", from: "2.0.0"),
.package(url: "https://github.com/GSM-MSG/GAuthSignin-Swift", from: "0.0.3"),
.package(url: "https://github.com/dmrschmidt/QRCode", from: "1.0.0"),
.package(url: "https://github.com/yannickl/QRCodeReader.swift.git", from: "10.1.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", from: "11.6.0")
]
)