forked from horizontalsystems/ethereum-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EthereumKit.swift.podspec
42 lines (33 loc) · 1.49 KB
/
EthereumKit.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
37
38
39
40
41
42
Pod::Spec.new do |s|
s.name = 'EthereumKit.swift'
s.module_name = 'EthereumKit'
s.version = '0.16.0'
s.summary = 'Ethereum wallet library for Swift.'
s.description = <<-DESC
EthereumKit.swift implements Ethereum protocol in Swift.
DESC
s.homepage = 'https://github.com/horizontalsystems/ethereum-kit-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Horizontal Systems' => '[email protected]' }
s.source = { git: 'https://github.com/horizontalsystems/ethereum-kit-ios.git', tag: "#{s.version}" }
s.social_media_url = 'http://horizontalsystems.io/'
s.ios.deployment_target = '13.0'
s.swift_version = '5'
s.source_files = 'EthereumKit/Classes/**/*'
s.requires_arc = true
# s.preserve_paths = ['EthereumKit/Libraries']
# s.vendored_libraries = 'EthereumKit/Libraries/lib/libincubed.a'
# s.pod_target_xcconfig = {
# 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}/EthereumKit/Libraries/include"',
# 'LIBRARY_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}/EthereumKit/Libraries/lib"'
# }
s.dependency 'OpenSslKit.swift', '~> 1.0'
s.dependency 'Secp256k1Kit.swift', '~> 1.0'
s.dependency 'HdWalletKit.swift', '~> 1.5'
s.dependency 'HsToolKit.swift', '~> 1.3'
s.dependency 'UIExtensions.swift', '~> 1.1'
s.dependency 'RxSwift', '~> 5.0'
s.dependency 'BigInt', '~> 5.0'
s.dependency 'GRDB.swift', '~> 5.0'
s.dependency 'BlueSocket', '~> 1.0'
end