forked from horizontalsystems/bitcoin-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DashKit.swift.podspec
31 lines (29 loc) · 1.22 KB
/
DashKit.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
Pod::Spec.new do |spec|
spec.name = 'DashKit.swift'
spec.module_name = 'DashKit'
spec.version = '0.7.0'
spec.summary = 'Dash library for Swift'
spec.description = <<-DESC
DashKit implements Dash protocol in Swift.
```
DESC
spec.homepage = 'https://github.com/horizontalsystems/bitcoin-kit-ios'
spec.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
spec.author = { 'Horizontal Systems' => '[email protected]' }
spec.social_media_url = 'http://horizontalsystems.io/'
spec.requires_arc = true
spec.source = { git: 'https://github.com/horizontalsystems/bitcoin-kit-ios.git', tag: "#{spec.version}" }
spec.source_files = 'DashKit/DashKit/**/*.{h,m,mm,swift}'
spec.ios.deployment_target = '11.0'
spec.swift_version = '5'
spec.dependency 'BitcoinCore.swift', '~> 0.7.0'
spec.dependency 'HSCryptoKit', '~> 1.4'
spec.dependency 'HSHDWalletKit', '~> 1.1'
spec.dependency 'CryptoBLS.swift', '~> 1.1'
spec.dependency 'CryptoX11.swift', '~> 1.1'
spec.dependency 'Alamofire', '~> 4.0'
spec.dependency 'ObjectMapper', '~> 3.0'
spec.dependency 'RxSwift', '~> 5.0'
spec.dependency 'BigInt', '~> 4.0'
spec.dependency 'GRDB.swift', '~> 4.0'
end