Skip to content

Commit

Permalink
feat: activated bip39 and its dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
psy2848048 committed Dec 6, 2024
1 parent e603575 commit 640c70f
Show file tree
Hide file tree
Showing 70 changed files with 15,339 additions and 6 deletions.
29 changes: 28 additions & 1 deletion Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "22254d631694a902aab0004e4e06ccaadc44f23e39989357a0faef043867b08e",
"originHash" : "db3a80d17d857abe1b53b3788eaa9dce79d5a29dac45793a04b4940d7168972a",
"pins" : [
{
"identity" : "anycodable",
Expand All @@ -9,6 +9,33 @@
"revision" : "862808b2070cd908cb04f9aafe7de83d35f81b05",
"version" : "0.6.7"
}
},
{
"identity" : "bigint",
"kind" : "remoteSourceControl",
"location" : "https://github.com/attaswift/BigInt.git",
"state" : {
"revision" : "114343a705df4725dfe7ab8a2a326b8883cfd79c",
"version" : "5.5.1"
}
},
{
"identity" : "cryptoswift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/krzyzanowskim/CryptoSwift.git",
"state" : {
"revision" : "678d442c6f7828def400a70ae15968aef67ef52d",
"version" : "1.8.3"
}
},
{
"identity" : "secp256k1.swift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Boilertalk/secp256k1.swift.git",
"state" : {
"revision" : "cd187c632fb812fd93711a9f7e644adb7e5f97f0",
"version" : "0.1.7"
}
}
],
"version" : 3
Expand Down
16 changes: 12 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.0
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -7,23 +7,31 @@ let package = Package(
name: "XRPLSwift-rest",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v5)
],
products: [
.library(
name: "XRPLSwift-rest",
targets: ["XRPLSwift-rest"]),
],
dependencies: [
.package(url: "https://github.com/Flight-School/AnyCodable.git", from: "0.6.7")
.package(url: "https://github.com/Flight-School/AnyCodable.git", from: "0.6.7"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.3"),
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.5.1"),
.package(url: "https://github.com/Boilertalk/secp256k1.swift.git", from: "0.1.7"),
],
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: "XRPLSwift-rest",
dependencies: [
"AnyCodable"
.product(name: "secp256k1", package: "secp256k1.swift"),
"AnyCodable",
"CryptoSwift",
"BigInt",
]
),
.testTarget(
Expand Down
Loading

0 comments on commit 640c70f

Please sign in to comment.