forked from Sentient-Cryptography/web3swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web3swift.podspec
31 lines (27 loc) · 1.09 KB
/
web3swift.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 |s|
s.name = "web3swift"
s.version = "1.1.5"
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/bankex/web3swift"
s.license = 'Apache License 2.0'
s.author = { "Alex Vlasov" => "[email protected]" }
s.source = { :git => 'https://github.com/bankex/web3swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/shamatar'
s.swift_version = '4.1'
s.module_name = 'web3swift'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.source_files = "web3swift/**/*.{h,swift}",
s.public_header_files = "web3swift/**/*.{h}"
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.frameworks = 'CoreImage'
s.dependency 'BigInt', '~> 3.1'
s.dependency 'Result', '~> 3.0'
s.dependency 'CryptoSwift', '~> 0.11'
s.dependency 'secp256k1_ios', '~> 0.1'
s.dependency 'PromiseKit', '~> 6.3'
s.dependency 'scrypt', '~> 1.5'
end