Skip to content

Commit b82e6a7

Browse files
author
Colin Tremblay
committed
fix mistake
1 parent beed8d0 commit b82e6a7

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

Package.resolved

Lines changed: 16 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
dependencies: [
1616
// Dependencies declare other packages that this package depends on.
1717
.package(
18-
name: "Argon2",
18+
name: "argon2",
1919
url: "https://github.com/P-H-C/phc-winner-argon2.git", .branch("master")
2020
)
2121
],
@@ -24,7 +24,7 @@ let package = Package(
2424
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2525
.target(
2626
name: "Argon2Swift",
27-
dependencies: ["Argon2"],
27+
dependencies: ["argon2"],
2828
path: "Sources/Swift"),
2929
.testTarget(
3030
name: "Argon2SwiftTests",

Sources/Modules/module.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Argon2 {
1+
module argon2 {
22
header "../Argon2/include/argon2.h"
33
export *
44
}

Sources/Swift/Argon2Swift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
import Foundation
8-
import Argon2
8+
import argon2
99

1010
/// Main class to handle all Argon2 hashing and verification
1111
/// ### Usage Example ###

0 commit comments

Comments
 (0)