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#2# Be sure to run `pod lib lint SolanaSwift.podspec' to ensure this is a3# valid spec before submitting.4#5# Any lines starting with a # are optional, but their use is encouraged6# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html7#89Pod::Spec.new do |s|10 s.name = 'SolanaSwift'11 s.version = '5.0.0'12 s.summary = 'A client for Solana written in Swift.'1314# This description is used to generate tags and improve search results.15# * Think: What does it do? Why did you write it? What is the focus?16# * Try to keep it short, snappy and to the point.17# * Write the description between the DESC delimiters below.18# * Finally, don't worry about the indent, CocoaPods strips it!1920 s.description = <<-DESC21Solana-blockchain client, written in pure swift, which supports keypair generation, networking, creating and signing transactions22 DESC2324 s.homepage = 'https://github.com/p2p-org/solana-swift'25 # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'26 s.license = { :type => 'MIT', :file => 'LICENSE' }27 s.author = { 'Chung Tran' => 'chung.t@p2p.org' }28 s.source = { :git => 'https://github.com/p2p-org/solana-swift.git', :tag => s.version.to_s }29 # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'3031 s.ios.deployment_target = '13.0'3233 s.source_files = 'Sources/SolanaSwift/**/*'34 # s.resources = 'Sources/SolanaSwift/Resources/*'35 s.swift_version = '5.0'3637 s.pod_target_xcconfig = {38 'SWIFT_OPTIMIZATION_LEVEL' => '-O'39 }4041 # s.public_header_files = 'Pod/Classes/**/*.h'42 # s.frameworks = 'UIKit', 'MapKit'43 s.dependency 'secp256k1.swift', '~> 0.1.4'44 s.dependency 'TweetNacl', '~> 1.0.2'45 s.dependency 'Task_retrying', '~> 2.0.0'46end47