1 Star 0 Fork 0

LiuZhe/swift-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Package.swift 991 Bytes
一键复制 编辑 原始数据 按行查看 历史
zapcannon87 提交于 2022-05-11 14:42 . chore: update package dependencies
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "LeanCloud",
platforms: [
.iOS(.v11),
.macOS(.v10_12),
.tvOS(.v10),
.watchOS(.v3)
],
products: [
.library(name: "LeanCloud", targets: ["LeanCloud"]),
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.4.4")),
.package(url: "https://github.com/apple/swift-protobuf.git", .upToNextMajor(from: "1.18.0")),
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMajor(from: "5.12.0"))
],
targets: [
.target(
name: "LeanCloud",
dependencies: [
"Alamofire",
"SwiftProtobuf",
"GRDB"
],
path: "Sources"
)
],
swiftLanguageVersions: [.v5]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/akdacun/swift-sdk.git
git@gitee.com:akdacun/swift-sdk.git
akdacun
swift-sdk
swift-sdk
master

搜索帮助