mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-02 14:49:44 +08:00
8d6f7047c2
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - New Features - Access Tokens screen now shows revealed access tokens, including the token value where available. - Chores - Updated iOS Paywall package to use Swift tools version 5.9. - Removed an unused internal iOS package to streamline the app. - Aligned access token data model to the latest backend schema for improved consistency. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
28 lines
578 B
Swift
28 lines
578 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AffinePaywall",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
.macOS(.v14), // just for build so LLM can verify their code
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "AffinePaywall",
|
|
targets: ["AffinePaywall"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../AffineResources"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AffinePaywall",
|
|
dependencies: ["AffineResources"],
|
|
),
|
|
]
|
|
)
|