From e3728e943f82a5e50a6f01bfd42f34efd1ad2f0c Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 10 Apr 2025 00:47:08 +0200 Subject: [PATCH] Added the Swift Log package as a dependency of the library target in the Package file. --- Package.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 836a02c..794548e 100644 --- a/Package.swift +++ b/Package.swift @@ -14,6 +14,7 @@ let package = Package( dependencies: [ .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), + .package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.0.0") ], targets: [ @@ -30,7 +31,8 @@ let package = Package( name: "DoxyLibrary", dependencies: [ .product(name: "ArgumentParser", package: "swift-argument-parser"), - .product(name: "Hummingbird", package: "hummingbird") + .product(name: "Hummingbird", package: "hummingbird"), + .product(name: "Logging", package: "swift-log") ], path: "Library" ),