-
Notifications
You must be signed in to change notification settings - Fork 83
/
HDWalletKit.podspec
27 lines (20 loc) · 1.04 KB
/
HDWalletKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'HDWalletKit'
s.version = '0.3.6'
s.summary = 'Hierarchical Deterministic(HD) wallet for cryptocurrencies in Swift'
s.description = <<-DESC
Simple Swift library for creating HD ([Hierarchical Deterministic Wallets](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)) cryptocurrencies wallets and working with crypto Coins/ERC20 tokens.
DESC
s.homepage = 'https://github.com/essentiaone/HDWallet.git'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'impl' => '[email protected]' }
s.source = { :git => 'https://github.com/essentiaone/HDWallet.git', :tag => s.version.to_s }
s.swift_version= '5'
s.static_framework = true
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11'
s.module_name = "HDWalletKit"
s.source_files = 'HDWalletKit/**/*.{swift}'
s.dependency 'secp256k1.swift', '~> 0.1.4'
s.dependency 'CryptoSwift', '~> 1.0.0'
end