Skip to content

Commit

Permalink
Swift package 0.3.1 (#12)
Browse files Browse the repository at this point in the history
* swift package

* folder structure

* fixup

* wip

* wip

* update framework to support 5.7

* deploy version

* fixup

* fixup

* signed

* revert
  • Loading branch information
j-r-j authored Jan 3, 2024
1 parent e642ceb commit 0841fcd
Show file tree
Hide file tree
Showing 63 changed files with 17,468 additions and 2,257 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
Package.resolved
.swiftpm/
38 changes: 38 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "TrustedFormPackage",
platforms: [.iOS(.v12)],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "TrustedFormPackage",
targets: [
"TrustedFormPackage",
"TrustedFormSwift"
]
)
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.8.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "TrustedFormPackage",
dependencies: [
.product(name: "Alamofire", package: "Alamofire"),
.target(name: "TrustedFormSwift", condition: .when(platforms: [.iOS]))
],
path: "TrustedFormPackage/Sources"
),
.binaryTarget(
name: "TrustedFormSwift",
path: "TrustedFormSwift.xcframework"
)
]
)
24 changes: 0 additions & 24 deletions TrustedForm.podspec

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

Binary file not shown.
Loading

0 comments on commit 0841fcd

Please sign in to comment.