Skip to content

Commit

Permalink
Use mustache 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Dec 4, 2024
1 parent 8bc4e1f commit 5a80e6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/soto-project/soto-smithy.git", from: "0.4.3"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.0.0"),
.package(url: "https://github.com/hummingbird-project/swift-mustache.git", from: "2.0.0-beta"),
.package(url: "https://github.com/hummingbird-project/swift-mustache.git", from: "2.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
],
targets: [
Expand All @@ -20,7 +20,7 @@ let package = Package(
dependencies: [
.byName(name: "SotoCodeGeneratorLib"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Logging", package: "swift-log")
.product(name: "Logging", package: "swift-log"),
]
),
.target(
Expand All @@ -29,7 +29,7 @@ let package = Package(
.product(name: "SotoSmithy", package: "soto-smithy"),
.product(name: "SotoSmithyAWS", package: "soto-smithy"),
.product(name: "Mustache", package: "swift-mustache"),
.product(name: "Logging", package: "swift-log")
.product(name: "Logging", package: "swift-log"),
]
),
.plugin(
Expand All @@ -40,6 +40,6 @@ let package = Package(
.testTarget(
name: "SotoCodeGeneratorTests",
dependencies: ["SotoCodeGeneratorLib"]
)
),
]
)

0 comments on commit 5a80e6d

Please sign in to comment.