-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFearlessUtils.podspec
41 lines (35 loc) · 1.49 KB
/
FearlessUtils.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
#
# Be sure to run `pod lib lint FearlessUtils.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 = 'FearlessUtils'
s.version = '0.14.1'
s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks'
s.homepage = 'https://github.com/soramitsu/fearless-utils-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Soramitsu' => '[email protected]' }
s.source = { :git => 'https://github.com/soramitsu/fearless-utils-iOS.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
s.source_files = 'FearlessUtils/Classes/**/*'
s.dependency 'IrohaCrypto/sr25519'
s.dependency 'IrohaCrypto/ed25519'
s.dependency 'IrohaCrypto/secp256k1'
s.dependency 'IrohaCrypto/Scrypt'
s.dependency 'IrohaCrypto/ss58'
s.dependency 'ReachabilitySwift', '~> 5.0'
s.dependency 'RobinHood'
s.dependency 'Starscream'
s.dependency 'TweetNacl', '~> 1.0.0'
s.dependency 'BigInt', '~> 5.0'
s.dependency 'xxHash-Swift', '~> 1.0.0'
s.test_spec do |ts|
ts.source_files = 'Tests/**/*.swift'
ts.resources = ['Tests/**/*.json', 'Tests/**/*-metadata']
end
end