mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 05:14:54 +00:00
29 lines
838 B
Swift
29 lines
838 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: "Intelligents",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v15),
|
|
.macCatalyst(.v15),
|
|
],
|
|
products: [
|
|
.library(name: "Intelligents", targets: ["Intelligents"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.1"),
|
|
.package(url: "https://github.com/Lakr233/SpringInterpolation", from: "1.1.0"),
|
|
.package(url: "https://github.com/Lakr233/MSDisplayLink", from: "1.1.0"),
|
|
],
|
|
targets: [
|
|
.target(name: "Intelligents", dependencies: [
|
|
"SpringInterpolation",
|
|
"MSDisplayLink",
|
|
.product(name: "MarkdownUI", package: "swift-markdown-ui"),
|
|
]),
|
|
]
|
|
)
|