fluent-dynamodb/Package.swift

28 lines
728 B
Swift
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "fluent-dynamodb",
products: [
.library(
name: "FluentDynamoDB",
targets: ["FluentDynamoDB"])
],
dependencies: [
// * ORM to integrate with Vapor
.package(url: "https://github.com/vapor/fluent", from: "3.1.0"),
// 💫 AWS Client Library
.package(url: "https://github.com/swift-aws/aws-sdk-swift", from: "3.0.0"),
],
targets: [
.target(
name: "FluentDynamoDB",
dependencies: ["DynamoDB", "Fluent"]),
.testTarget(
name: "FluentDynamoDBTests",
dependencies: ["FluentDynamoDB"])
]
)