forked from horizontalsystems/bitcoin-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BitcoinCashKit.swift.podspec
34 lines (27 loc) · 1.32 KB
/
BitcoinCashKit.swift.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
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'BitcoinCashKit.swift'
s.module_name = 'BitcoinCashKit'
s.version = '0.18'
s.summary = 'BitcoinCash library for Swift.'
s.description = <<-DESC
BitcoinCashKit implements BitcoinCash protocol in Swift. It is an implementation of the BitcoinCash SPV protocol written (almost) entirely in swift.
DESC
s.homepage = 'https://github.com/horizontalsystems/bitcoin-kit-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Horizontal Systems' => '[email protected]' }
s.source = { git: 'https://github.com/horizontalsystems/bitcoin-kit-ios.git', tag: "bitcoin-cash-#{s.version}" }
s.social_media_url = 'http://horizontalsystems.io/'
s.ios.deployment_target = '13.0'
s.swift_version = '5'
s.source_files = 'BitcoinCashKit/Classes/**/*'
s.resource_bundle = { 'BitcoinCashKit' => 'BitcoinCashKit/Assets/Checkpoints/*' }
s.requires_arc = true
s.dependency 'BitcoinCore.swift', '~> 0.18'
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
s.dependency 'HdWalletKit.swift', '~> 1.5'
s.dependency 'ObjectMapper', '~> 4.0'
s.dependency 'RxSwift', '~> 5.0'
s.dependency 'BigInt', '~> 5.0'
s.dependency 'GRDB.swift', '~> 5.0'
end