forked from AlphaWallet/alpha-wallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlphaWalletWeb3.podspec
42 lines (37 loc) · 1.53 KB
/
AlphaWalletWeb3.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
#
# Be sure to run `pod lib lint AlphaWalletWeb3.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "AlphaWalletWeb3"
s.version = "0.0.1"
s.summary = "Web3 implementation in vanilla Swift for iOS ans macOS"
s.description = <<-DESC
Web3 implementation in vanilla Swift, intended for mobile developers of wallets, Dapps and Web3.0
DESC
s.homepage = "https://github.com/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletWeb3"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vladyslav Shepitko" => "[email protected]" }
s.source = { :git => '[email protected]:AlphaWallet/alpha-wallet-ios.git', :tag => "#{s.version}" }
s.swift_version = '5.0'
s.module_name = 'AlphaWalletWeb3'
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.11"
s.source_files = 'modules/AlphaWalletWeb3/AlphaWalletWeb3/**/*.{h,m,swift}'
s.public_header_files = "AlphaWalletWeb3/**/*.{h}"
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.dependency 'AlphaWalletAddress'
s.dependency 'AlphaWalletABI'
s.dependency 'AlphaWalletCore'
s.dependency 'AlphaWalletLogger'
s.dependency 'APIKit'
s.dependency 'BigInt'
s.dependency 'CryptoSwift'
s.dependency 'secp256k1_ios', '~> 0.1.3'
s.dependency 'JSONRPCKit'
s.dependency 'PromiseKit', '~> 6.3.0'
s.dependency 'SwiftyJSON', '5.0.0'
end