Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2023 Apple Inc. and the SwiftNIO project authors
// Copyright (c) 2025 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
Expand Down Expand Up @@ -67,10 +67,17 @@ let package = Package(
.target(
name: "ObliviousX",
dependencies: [
.product(name: "Crypto", package: "swift-crypto")
.product(name: "Crypto", package: "swift-crypto"),
"ObliviousXHelpers",
],
swiftSettings: strictConcurrencySettings
),
.target(
name: "ObliviousXHelpers",
dependencies: [
.product(name: "Crypto", package: "swift-crypto")
]
),
.testTarget(
name: "ObliviousHTTPTests",
dependencies: [
Expand Down
Loading
Loading