SPB Git

spb/os-vault Public

Self-custody, multi-chain crypto wallet for macOS. One recovery phrase, six chain families, zero API keys — nothing leaves your Mac.

Swift 96% Shell 3.4% Makefile 0.6%
1.1 KB · 39 lines swift
Raw Blame History
1// swift-tools-version:5.7.123import PackageDescription45let package = Package(6    name: "SolanaSwift",7    platforms: [8        .macOS(.v10_15),9        .iOS(.v15),10        .tvOS(.v11),11        .watchOS(.v4),12    ],13    products: [14        .library(15            name: "SolanaSwift",16            targets: ["SolanaSwift"]17        ),18    ],19    dependencies: [20        // Main depedencies21        .package(url: "https://github.com/web3swift-team/web3swift.git", from: "3.2.0"),22        .package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap.git", from: "1.0.2"),23        .package(url: "https://github.com/bigearsenal/task-retrying-swift.git", from: "2.0.0"),2425        // Docs generator26        .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),27    ],28    targets: [29        .target(30            name: "SolanaSwift",31            dependencies: [32                .product(name: "web3swift", package: "web3swift"),33                .product(name: "TweetNacl", package: "tweetnacl-swiftwrap"),34                .product(name: "Task_retrying", package: "task-retrying-swift"),35            ]36        ),37        ]38)39