forked from horizontalsystems/bitcoin-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BitcoinCore-Universal.swift.podspec
36 lines (29 loc) · 1.46 KB
/
BitcoinCore-Universal.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
35
36
Pod::Spec.new do |s|
s.name = 'BitcoinCore-Universal.swift'
s.module_name = 'BitcoinCore'
s.version = '0.17'
s.summary = 'Core library Bitcoin derived wallets for Swift. Supports iOS & macOS'
s.description = <<-DESC
BitcoinCore implements Bitcoin core protocol in Swift. It is an implementation of the Bitcoin SPV protocol written (almost) entirely in swift.
DESC
s.homepage = 'https://github.com/cuhte3/bitcoin-kit-universal'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Horizontal Systems' => '[email protected]', 'cuhte3' => '[email protected]' }
s.source = { git: 'https://github.com/cuhte3/bitcoin-kit-universal.git', tag: "bitcoin-core-#{s.version}" }
s.social_media_url = 'http://horizontalsystems.io/'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.14'
s.swift_version = '5'
s.source_files = 'BitcoinCore/Classes/**/*'
s.requires_arc = true
s.dependency 'OpenSslKit-Universal.swift', '~> 1.2.2'
s.dependency 'Secp256k1Kit-Universal.swift', '~> 1.1'
s.dependency 'HdWalletKit-Universal.swift', '~> 1.5.2'
s.dependency 'HsToolKit-Universal.swift', '~> 1.3.1'
s.dependency 'UIExtensions-Stripped.swift', '~> 1.1.2'
s.dependency 'ObjectMapper', '~> 4.0'
s.dependency 'RxSwift', '~> 5.0'
s.dependency 'BigInt', '~> 5.0'
s.dependency 'GRDB.swift', '~> 5.0'
s.dependency 'SwiftNIO', '~> 2'
end