fix: use version 0.10 for secp library (#95)
This commit is contained in:
parent
5514cf65a7
commit
c2c8ae2183
|
@ -22,7 +22,7 @@ let package = Package(
|
|||
// .package(url: /* package url */, from: "1.0.0"),
|
||||
|
||||
.package(url: "https://github.com/xmtp/proto", branch: "main"),
|
||||
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", branch: "main"),
|
||||
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", from: "0.10.0"),
|
||||
.package(url: "https://github.com/argentlabs/web3.swift", from: "1.1.0"),
|
||||
.package(url: "https://github.com/1024jp/GzipSwift", from: "5.2.0"),
|
||||
.package(url: "https://github.com/bufbuild/connect-swift", from: "0.3.0"),
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
6AEE396E29F330CD0027B657 /* secp256k1 in Frameworks */ = {isa = PBXBuildFile; productRef = 6AEE396D29F330CD0027B657 /* secp256k1 */; };
|
||||
A60FC8BF293AD054001697E3 /* MessageComposerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60FC8BE293AD054001697E3 /* MessageComposerView.swift */; };
|
||||
A60FC8C1293AD171001697E3 /* ConversationDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60FC8C0293AD171001697E3 /* ConversationDetailView.swift */; };
|
||||
A60FC8C3293AD18A001697E3 /* PreviewClientProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60FC8C2293AD18A001697E3 /* PreviewClientProvider.swift */; };
|
||||
|
@ -92,6 +93,7 @@
|
|||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A65F0707297B5E7600C3C76E /* WalletConnectSwift in Frameworks */,
|
||||
6AEE396E29F330CD0027B657 /* secp256k1 in Frameworks */,
|
||||
A69F33C6292DC992005A5556 /* XMTP in Frameworks */,
|
||||
A65F070A297B5E8600C3C76E /* KeychainAccess in Frameworks */,
|
||||
);
|
||||
|
@ -217,6 +219,7 @@
|
|||
A69F33C5292DC992005A5556 /* XMTP */,
|
||||
A65F0706297B5E7600C3C76E /* WalletConnectSwift */,
|
||||
A65F0709297B5E8600C3C76E /* KeychainAccess */,
|
||||
6AEE396D29F330CD0027B657 /* secp256k1 */,
|
||||
);
|
||||
productName = XMTPiOSExample;
|
||||
productReference = A628198F292DC825004B9117 /* XMTPiOSExample.app */;
|
||||
|
@ -273,6 +276,7 @@
|
|||
packageReferences = (
|
||||
A65F0705297B5E7500C3C76E /* XCRemoteSwiftPackageReference "WalletConnectSwift" */,
|
||||
A65F0708297B5E8600C3C76E /* XCRemoteSwiftPackageReference "KeychainAccess" */,
|
||||
6AEE396C29F330CD0027B657 /* XCRemoteSwiftPackageReference "secp256k1.swift" */,
|
||||
);
|
||||
productRefGroup = A6281990292DC825004B9117 /* Products */;
|
||||
projectDirPath = "";
|
||||
|
@ -625,6 +629,14 @@
|
|||
/* End XCConfigurationList section */
|
||||
|
||||
/* Begin XCRemoteSwiftPackageReference section */
|
||||
6AEE396C29F330CD0027B657 /* XCRemoteSwiftPackageReference "secp256k1.swift" */ = {
|
||||
isa = XCRemoteSwiftPackageReference;
|
||||
repositoryURL = "https://github.com/GigaBitcoin/secp256k1.swift.git";
|
||||
requirement = {
|
||||
kind = exactVersion;
|
||||
version = 0.10.0;
|
||||
};
|
||||
};
|
||||
A65F0705297B5E7500C3C76E /* XCRemoteSwiftPackageReference "WalletConnectSwift" */ = {
|
||||
isa = XCRemoteSwiftPackageReference;
|
||||
repositoryURL = "https://github.com/WalletConnect/WalletConnectSwift";
|
||||
|
@ -644,6 +656,11 @@
|
|||
/* End XCRemoteSwiftPackageReference section */
|
||||
|
||||
/* Begin XCSwiftPackageProductDependency section */
|
||||
6AEE396D29F330CD0027B657 /* secp256k1 */ = {
|
||||
isa = XCSwiftPackageProductDependency;
|
||||
package = 6AEE396C29F330CD0027B657 /* XCRemoteSwiftPackageReference "secp256k1.swift" */;
|
||||
productName = secp256k1;
|
||||
};
|
||||
A65F0706297B5E7600C3C76E /* WalletConnectSwift */ = {
|
||||
isa = XCSwiftPackageProductDependency;
|
||||
package = A65F0705297B5E7500C3C76E /* XCRemoteSwiftPackageReference "WalletConnectSwift" */;
|
||||
|
|
|
@ -77,8 +77,8 @@
|
|||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/GigaBitcoin/secp256k1.swift.git",
|
||||
"state" : {
|
||||
"branch" : "main",
|
||||
"revision" : "9bfd1a648d0867d5491f56f237c58bc0bd105fc3"
|
||||
"revision" : "48fb20fce4ca3aad89180448a127d5bc16f0e44c",
|
||||
"version" : "0.10.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue