From 1ce4ec7b933aae733df625838e1c307e0356b1f8 Mon Sep 17 00:00:00 2001 From: Bouke Haarsma Date: Sat, 26 May 2018 10:08:55 +0200 Subject: [PATCH] Use fork of BigInt for 4.1 compatibility --- .gitignore | 1 + Package.swift | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 02c0875..8a61e2e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /.build /Packages /*.xcodeproj +/Package.resolved diff --git a/Package.swift b/Package.swift index 1d3f933..b0ec968 100644 --- a/Package.swift +++ b/Package.swift @@ -9,7 +9,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/IBM-Swift/BlueCryptor.git", from: "0.8.27"), - .package(url: "https://github.com/attaswift/BigInt.git", from: "3.0.2"), + .package(url: "https://github.com/Boilertalk/BigInt.swift.git", from: "1.0.0"), ], targets: [ .target(name: "SRP", dependencies: ["Cryptor", "BigInt"], path: "Sources"),