mixpanel-swift/Package.swift
2026-04-17 22:43:58 +05:30

39 lines
837 B
Swift

// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Mixpanel",
platforms: [
.iOS(.v12),
.tvOS(.v12),
.macOS(.v10_13),
.watchOS(.v4),
],
products: [
.library(name: "Mixpanel", targets: ["Mixpanel"])
],
dependencies: [
.package(
url: "https://github.com/advantagefse/json-logic-swift",
from: "1.2.0"
),
.package(
url: "https://github.com/mixpanel/mixpanel-swift-common.git",
from: "1.0.0"
)
],
targets: [
.target(
name: "Mixpanel",
dependencies: [
.product(name: "MixpanelSwiftCommon", package: "mixpanel-swift-common"),
.product(name: "jsonlogic", package: "json-logic-swift"),
],
path: "Sources",
resources: [
.copy("Mixpanel/PrivacyInfo.xcprivacy")
]
)
]
)