Removed the Swift Log package dependency from the Package file.

This commit is contained in:
Javier Cicchelli 2025-04-14 00:08:28 +02:00
parent 469af173cf
commit 42758f29c1

View File

@ -14,7 +14,6 @@ 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: [
@ -31,8 +30,7 @@ let package = Package(
name: "DoxyLibrary",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Hummingbird", package: "hummingbird"),
.product(name: "Logging", package: "swift-log")
.product(name: "Hummingbird", package: "hummingbird")
],
path: "Library"
),