Skip to content

Commit 0bcc4a2

Browse files
committed
chore: linux support
1 parent 940b1b9 commit 0bcc4a2

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

Package.resolved

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ let package = Package(
1717
],
1818
dependencies: [
1919
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.1"),
20+
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "4.0.0"),
2021
],
2122

2223
targets: [
@@ -25,7 +26,8 @@ let package = Package(
2526
.executableTarget(
2627
name: "BinaryDependenciesManager",
2728
dependencies: [
28-
.product(name: "ArgumentParser", package: "swift-argument-parser")
29+
.product(name: "ArgumentParser", package: "swift-argument-parser"),
30+
.product(name: "Crypto", package: "swift-crypto"),
2931
]
3032
),
3133

Sources/BinaryDependencyManager/DepeneciesResolverRunner.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import CryptoKit
1+
import Crypto
22
import Foundation
33

44
struct DependenciesResolverRunner {

0 commit comments

Comments
 (0)