Skip to content

Commit

Permalink
Merge pull request #24 from torusresearch/update_minimum_version
Browse files Browse the repository at this point in the history
update_minimum_ios_version
  • Loading branch information
himanshuchawla009 authored Nov 15, 2024
2 parents 508e6df + 7156d73 commit 4eadb32
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@
"repositoryURL": "https://github.com/tkey/curvelib.swift",
"state": {
"branch": null,
"revision": "9f88bd5e56d1df443a908f7a7e81ae4f4d9170ea",
"version": "1.0.1"
"revision": "432bf1abe7ff505fc2ac9fcf697341ff5b2dc6d0",
"version": "2.0.0"
}
},
{
"package": "SocketIO",
"repositoryURL": "https://github.com/socketio/socket.io-client-swift",
"state": {
"branch": null,
"revision": "af5ce97b755d964235348d96f6db5cbdcbe334a5",
"version": "16.0.1"
"revision": "42da871d9369f290d6ec4930636c40672143905b",
"version": "16.1.1"
}
},
{
"package": "Starscream",
"repositoryURL": "https://github.com/daltoniam/Starscream",
"state": {
"branch": null,
"revision": "df8d82047f6654d8e4b655d1b1525c64e1059d21",
"version": "4.0.4"
"revision": "c6bfd1af48efcc9a9ad203665db12375ba6b145a",
"version": "4.0.8"
}
}
]
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ import PackageDescription

let package = Package(
name: "tss-client-swift",
platforms: [.iOS(.v13), .macOS(.v10_15)],
platforms: [.iOS(.v14), .macOS(.v10_15)],
products: [
.library(
name: "tssClientSwift",
targets: ["tssClientSwift"]),
],
dependencies: [
.package(name: "BigInt", url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
.package(name: "curvelib.swift", url: "https://github.com/tkey/curvelib.swift", from: "1.0.1"),
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", .upToNextMajor(from: "16.0.1")),
.package(name: "curvelib.swift", url: "https://github.com/tkey/curvelib.swift", from: "2.0.0"),
.package(name: "SocketIO", url: "https://github.com/socketio/socket.io-client-swift", from: "16.1.1"),
],
targets: [
.binaryTarget(name: "libdkls",
Expand Down
6 changes: 3 additions & 3 deletions tss-client-swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "tss-client-swift"
spec.version = "4.0.0"
spec.version = "5.0.0"
spec.ios.deployment_target = '13.0'
spec.summary = "MPC TSS Client"
spec.homepage = "https://web3auth.io/"
Expand All @@ -10,9 +10,9 @@ Pod::Spec.new do |spec|
spec.source = { :git => "https://github.com/torusresearch/tss-client-swift.git", :tag => spec.version }
spec.source_files = "Sources/**/*.{swift,h,c}"
spec.vendored_frameworks = "Sources/libdkls/libdkls.xcframework"
spec.dependency 'curvelib.swift', '~> 1.0.1'
spec.dependency 'curvelib.swift', '~> 2.0.0'
spec.dependency 'BigInt', '~> 5.2.0'
spec.dependency 'Socket.IO-Client-Swift', '16.1.0'
spec.dependency 'Socket.IO-Client-Swift', '16.1.1'
spec.dependency "Starscream", "4.0.6"
spec.module_name = "tssClientSwift"
end

0 comments on commit 4eadb32

Please sign in to comment.