|
1 | 1 | Pod::Spec.new do |s|
|
2 | 2 | s.name = "web3swift"
|
3 |
| -s.version = "2.0.1" |
| 3 | +s.version = "2.1.1" |
4 | 4 | s.summary = "Web3 implementation in vanilla Swift for iOS ans macOS"
|
5 | 5 |
|
6 | 6 | s.description = <<-DESC
|
7 | 7 | Web3 implementation in vanilla Swift, intended for mobile developers of wallets, Dapps and Web3.0
|
8 | 8 | DESC
|
9 | 9 |
|
10 |
| -s.homepage = "https://github.com/matterinc/web3swift" |
| 10 | +s.homepage = "https://github.com/matter-labs/web3swift" |
11 | 11 | s.license = 'Apache License 2.0'
|
12 | 12 | s.author = { "Alex Vlasov" => "[email protected]" }
|
13 |
| -s.source = { :git => 'https://github.com/matterinc/web3swift.git', :tag => s.version.to_s } |
| 13 | +s.source = { :git => 'https://github.com/matter-labs/web3swift.git', :tag => s.version.to_s } |
14 | 14 | s.social_media_url = 'https://twitter.com/shamatar'
|
15 | 15 |
|
16 | 16 | s.swift_version = '4.1'
|
17 | 17 | s.module_name = 'Web3swift'
|
18 | 18 | s.ios.deployment_target = "9.0"
|
19 | 19 | s.osx.deployment_target = "10.11"
|
20 |
| -s.source_files = "web3swift/{PrecompiledContracts,Promises,Web3,Contract,KeystoreManager,Transaction,Convenience}/Classes/*.{h,swift}", "web3swift/Utils/Classes/{EIP67Code, EIP681}.swift", "web3swift/HookedFunctions/Classes/*.swift", "web3swift/web3swift.h" |
| 20 | +s.source_files = "web3swift/{Promises,HookedFunctions,Web3,Contract,KeystoreManager,Transaction,Convenience}/Classes/*.{h,swift}", "web3swift/Utils/Classes/{EIP67Code, EIP681, ENS, ENSResolver, NameHash}.swift", "web3swift/PrecompiledContracts/**/*.swift", "web3swift/web3swift.h" |
21 | 21 | s.public_header_files = "web3swift/web3swift.h"
|
22 | 22 | s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
|
23 | 23 |
|
24 | 24 | s.frameworks = 'CoreImage'
|
| 25 | +s.dependency 'scrypt', '~> 2.0' |
| 26 | +s.dependency 'PromiseKit', '~> 6.4.1' |
25 | 27 | s.dependency 'BigInt', '~> 3.1'
|
26 | 28 | s.dependency 'CryptoSwift', '~> 0.13'
|
27 |
| -s.dependency 'PromiseKit', '~> 6.3' |
28 |
| -s.dependency 'scrypt', '~> 2.0' |
| 29 | +s.dependency 'Result', '~> 4.0' |
29 | 30 | s.dependency 'secp256k1_swift', '~> 1.0.3'
|
30 | 31 | s.dependency 'SwiftRLP', '~> 1.1'
|
31 | 32 | s.dependency 'EthereumAddress', '~> 1.0.0'
|
32 | 33 | s.dependency 'EthereumABI', '~> 1.1.1'
|
| 34 | + |
33 | 35 | end
|
0 commit comments