forked from argentlabs/web3.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web3.swift.podspec
27 lines (22 loc) · 1008 Bytes
/
web3.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
Pod::Spec.new do |s|
s.name = 'web3.swift'
s.version = '1.4.1'
s.license = 'MIT'
s.summary = 'Ethereum API for Swift'
s.homepage = 'https://github.com/argentlabs/web3.swift'
s.authors = { 'Julien Niset' => '[email protected]', 'Matt Marshall' => '[email protected]', 'Miguel Angel Quiñones' => '[email protected]' }
s.source = { :git => 'https://github.com/tungnguyen20/web3.swift.git' }
s.module_name = 'web3'
s.swift_version = '5.5'
s.ios.deployment_target = '13.0'
s.source_files = 'web3swift/src/**/*.swift', 'web3swift/lib/**/*.{c,h,swift}'
s.pod_target_xcconfig = {
'SWIFT_INCLUDE_PATHS[sdk=iphonesimulator*]' => '$(inherited) $(PODS_TARGET_SRCROOT)/web3swift/lib/**',
'SWIFT_INCLUDE_PATHS[sdk=iphoneos*]' => '$(inherited) $(PODS_TARGET_SRCROOT)/web3swift/lib/**'
}
s.preserve_paths = 'web3swift/lib/**/module.map'
s.dependency 'BigInt'
s.dependency 'secp256k1.swift', '~> 0.1'
s.dependency 'GenericJSON', '~> 2.0'
s.dependency 'Logging', '~> 1.0.0'
end