view Package.swift @ 121:6d53542f6f9e

Small README fixes Hi! 👋 I just tried out this lib. It's really easy to integrate 👍 There are two compile errors in the Capsule Chart example, and the `dates` and `hours` in the `LineChartController` would be less surprising with a small comment. Here's my proposal how to make it even easier to get started 😊 Best Jannik committer: GitHub <noreply@github.com>
author Jannik Arndt <jannik@jannikarndt.de>
date Sun, 29 Aug 2021 13:40:06 +0200
parents 766a1169564b
children
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: "StockCharts",
    platforms: [
        .iOS(.v14), .watchOS(.v7)
    ],
    products: [
        .library(
            name: "StockCharts",
            targets: ["StockCharts"]),
    ],
    dependencies: [

    ],
    targets: [
        .target(
            name: "StockCharts",
            dependencies: []),
        .testTarget(
            name: "StockChartsTests",
            dependencies: ["StockCharts"]),
    ]
)