Require Baggage library in BaggageLogging target (#20)

This commit is contained in:
Moritz Lang 2020-08-17 11:30:35 +02:00 committed by GitHub
parent b2bd5c73b4
commit fc31808903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ let package = Package(
.target(
name: "BaggageLogging",
dependencies: [
.product(name: "Logging", package: "swift-log")
"Baggage",
.product(name: "Logging", package: "swift-log"),
]
),