Regularize RSTree Package.swift. Fix #4610.

This commit is contained in:
Brent Simmons
2025-04-22 21:54:15 -07:00
parent 80e450cd32
commit 0e06fd4ab0

View File

@@ -2,17 +2,17 @@
import PackageDescription
let package = Package(
name: "RSTree",
name: "RSTree",
platforms: [.macOS(.v13), .iOS(.v17)],
products: [
.library(
name: "RSTree",
type: .dynamic,
targets: ["RSTree"]),
],
targets: [
.target(
name: "RSTree",
dependencies: []),
]
products: [
.library(
name: "RSTree",
type: .dynamic,
targets: ["RSTree"]),
],
targets: [
.target(
name: "RSTree",
dependencies: []),
]
)