Skip to content

Commit 328cb8d

Browse files
committed
Add SwiftCLI
- Added `SwiftCLI` as dependience of `AlphaVantageExecutable`AlphaVantageExecutable`. - Renamed package name to `Swift Alpha Vantage`.
1 parent 25308a9 commit 328cb8d

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

Package.resolved

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "AlphaVantageExecutable",
7+
name: "Swift Alpha Vantage",
88
products: [
99
.executable(name: "AlphaVantageExecutable",
1010
targets: ["AlphaVantageExecutable"]),
@@ -13,6 +13,10 @@ let package = Package(
1313
dependencies: [
1414
// Dependencies declare other packages that this package depends on.
1515
// .package(url: /* package url */, from: "1.0.0"),
16+
.package(
17+
url: "https://github.com/jakeheis/SwiftCLI",
18+
from: "5.3.3"
19+
),
1620
.package(
1721
url: "https://github.com/IBM-Swift/Configuration.git",
1822
from: "3.0.4"
@@ -25,7 +29,7 @@ let package = Package(
2529
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2630
.target(
2731
name: "AlphaVantageExecutable",
28-
dependencies: ["AlphaVantage", "Configuration"]
32+
dependencies: ["AlphaVantage", "Configuration", "SwiftCLI"]
2933
),
3034
.target(
3135
name: "AlphaVantage",
@@ -36,4 +40,4 @@ let package = Package(
3640
dependencies: ["AlphaVantage", "SwiftyRequest"]
3741
),
3842
]
39-
)
43+
)

0 commit comments

Comments
 (0)