Skip to content
This repository was archived by the owner on Apr 7, 2023. It is now read-only.
Merged
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
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version: 5.6

import PackageDescription

let package = Package(
name: "GMP",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "GMP",
targets: ["GMP"]
),
],
targets: [
.binaryTarget(
name: "GMP",
url: "https://github.com/FlowCrypt/GMP/releases/download/6.2.1/GMP.xcframework.zip",
checksum: "e35e396f571163a83bc35601fa7505339acfed45dd935c6bed5b07264fdec519"
)
Comment on lines +17 to +21
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interestingly, I don't see any releases showing on the repo page?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was a placeholder for Swift package link, I just created 6.2.1 release in this repository

]
)