Added the Swift Log package as a dependency of the library target in the Package file.

This commit is contained in:
Javier Cicchelli 2025-04-10 00:47:08 +02:00
parent 7f08a45cc8
commit e3728e943f

View File

@ -14,6 +14,7 @@ let package = Package(
dependencies: [ dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"), .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-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") .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.0.0")
], ],
targets: [ targets: [
@ -30,7 +31,8 @@ let package = Package(
name: "DoxyLibrary", name: "DoxyLibrary",
dependencies: [ dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"), .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" path: "Library"
), ),