forked from novasamatech/substrate-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubstrateSdk.podspec
42 lines (36 loc) · 1.64 KB
/
SubstrateSdk.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 SubstrateSdk.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 = 'SubstrateSdk'
s.version = '3.0.0'
s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks'
s.homepage = 'https://github.com/nova-wallet/substrate-sdk-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ERussel' => 'ruslan@novawallet.io' }
s.source = { :git => 'https://github.com/nova-wallet/substrate-sdk-ios.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '14.0'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
s.source_files = 'SubstrateSdk/Classes/**/*'
s.dependency 'IrohaCrypto/sr25519', '~> 0.9.0'
s.dependency 'IrohaCrypto/ed25519', '~> 0.9.0'
s.dependency 'IrohaCrypto/secp256k1', '~> 0.9.0'
s.dependency 'IrohaCrypto/Scrypt', '~> 0.9.0'
s.dependency 'IrohaCrypto/ss58', '~> 0.9.0'
s.dependency 'ReachabilitySwift', '~> 5.0'
s.dependency 'Operation-iOS', '~> 2.0.1'
s.dependency 'Starscream'
s.dependency 'TweetNacl', '~> 1.0.0'
s.dependency 'BigInt', '~> 5.0'
s.dependency 'xxHash-Swift', '~> 1.0.0'
s.dependency 'keccak.c', '~> 0.1.0'
s.test_spec do |ts|
ts.source_files = 'Tests/**/*.swift'
ts.resources = ['Tests/**/*.json', 'Tests/**/*-metadata']
end
end