44import PackageDescription
55
66let 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