Mercurial > public > stock-charts
view Package.swift @ 17:c0c129bdf65d
Rename project
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 28 Apr 2021 19:54:52 +0200 |
parents | 9f0b6b24c0e1 |
children | 647d3a64ca3f |
line wrap: on
line source
// swift-tools-version:5.3 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription /* https://swift.org/package-manager/ */ let package = Package( name: "SwiftUICharts", platforms: [ .iOS(.v14) ], products: [ .library( name: "InteractiveCharts", targets: ["InteractiveCharts"]), ], dependencies: [ ], targets: [ .target( name: "InteractiveCharts", dependencies: []), .testTarget( name: "InteractiveChartsTests", dependencies: ["InteractiveCharts"]), ] )