Installed skelpo/Countries package

This commit is contained in:
Caleb Kleveter 2018-12-03 10:57:52 -06:00
parent 583048fdf9
commit bb9b97ca57
No known key found for this signature in database
GPG Key ID: B38DBD5CF2C98D69
2 changed files with 11 additions and 1 deletions

View File

@ -19,6 +19,15 @@
"version": "3.4.4" "version": "3.4.4"
} }
}, },
{
"package": "Countries",
"repositoryURL": "https://github.com/skelpo/Countries.git",
"state": {
"branch": null,
"revision": "05e18cb310cb18caebb0be243834d7c3d979810c",
"version": "0.9.0"
}
},
{ {
"package": "Crypto", "package": "Crypto",
"repositoryURL": "https://github.com/vapor/crypto.git", "repositoryURL": "https://github.com/vapor/crypto.git",

View File

@ -8,10 +8,11 @@ let package = Package(
.library(name: "TaxJar", targets: ["TaxJar"]), .library(name: "TaxJar", targets: ["TaxJar"]),
], ],
dependencies: [ dependencies: [
.package(url: "https://github.com/skelpo/Countries.git", from: "0.9.0"),
.package(url: "https://github.com/vapor/vapor.git", from: "3.1.0") .package(url: "https://github.com/vapor/vapor.git", from: "3.1.0")
], ],
targets: [ targets: [
.target(name: "TaxJar", dependencies: ["Vapor"]), .target(name: "TaxJar", dependencies: ["Vapor", "Countries"]),
.testTarget(name: "TaxJarTests", dependencies: ["TaxJar"]), .testTarget(name: "TaxJarTests", dependencies: ["TaxJar"]),
] ]
) )