Skip to content

Commit

Permalink
[#64] maintain iOS 15 compatibility
Browse files Browse the repository at this point in the history
closes #64

Lukas Korba from ECC reported that Zashi couldn't be built since
the latest version of BigDecimal depend on BigInt which has min
deployment target of iOS 16.4
  • Loading branch information
pacu committed Sep 2, 2024
1 parent a72750d commit 3e5d89c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import PackageDescription
let dependencies: [Package.Dependency] = [
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.13.0"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", exact: Version(stringLiteral: "1.0.0")),
.package(url: "https://github.com/mgriebling/BigDecimal.git", from: "2.0.0"),
.package(url: "https://github.com/mgriebling/BigDecimal.git", exact: Version(stringLiteral: "2.2.3")),
.package(url: "https://github.com/mgriebling/BigInt.git", exact: Version(stringLiteral: "2.0.10")),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.0.0")
]

Expand All @@ -18,6 +19,7 @@ let targets: [Target] = [
dependencies: [
.product(name: "Parsing", package: "swift-parsing"),
.product(name: "BigDecimal", package: "BigDecimal"),
.product(name: "BigInt", package: "BigInt"),
.product(name: "CustomDump", package: "swift-custom-dump")
]
),
Expand All @@ -33,6 +35,7 @@ let dependencies: [Package.Dependency] = [
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.13.0"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", exact: Version(stringLiteral: "1.0.0")),
.package(url: "https://github.com/mgriebling/BigDecimal.git", from: "2.0.0"),
.package(url: "https://github.com/mgriebling/BigInt.git", exact: Version(stringLiteral: "2.0.11")),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.0.0")
]

Expand Down

0 comments on commit 3e5d89c

Please sign in to comment.