Mercurial > public > stock-charts
view Package.swift @ 16:9f0b6b24c0e1
Update swift-tools-version
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 28 Apr 2021 19:06:58 +0200 |
parents | 820202017183 |
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"]), ] )