Skip to content

Commit 08de109

Browse files
authored
Merge pull request #9 from mattrudin/feature/remove-alamofire
Feature/remove alamofire
2 parents 87b02e2 + c1d3639 commit 08de109

File tree

4 files changed

+854
-330
lines changed

4 files changed

+854
-330
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ profile
1919
DerivedData
2020
*.hmap
2121
*.ipa
22+
.swiftpm
2223

2324
# Bundler
2425
.bundle

Package.swift

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,16 @@ let package = Package(
2121

2222
dependencies: [
2323
// Dependencies declare other packages that this package depends on.
24-
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "4.0.0"),
25-
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.2.0")
24+
.package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", from: "4.0.0")
2625
],
2726
targets: [
2827
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2928
// Targets can depend on other targets in this package, and on products in packages this package depends on.
3029
.target(
3130
name: "SwiftYFinance",
32-
dependencies: ["SwiftyJSON", "Alamofire"], path: "Sources"),
31+
dependencies: ["SwiftyJSON"], path: "Sources"),
3332
.testTarget(
3433
name: "SwiftYFinanceTests",
35-
dependencies: ["SwiftYFinance", "SwiftyJSON", "Alamofire"], path: "Tests/SwiftYFinanceTests")
34+
dependencies: ["SwiftYFinance", "SwiftyJSON"], path: "Tests/SwiftYFinanceTests")
3635
]
3736
)

0 commit comments

Comments
 (0)