forked from zksync-sdk/zksync-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZKSync.podspec
25 lines (18 loc) · 920 Bytes
/
ZKSync.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
Pod::Spec.new do |s|
s.name = 'ZKSync'
s.version = '0.0.3'
s.summary = 'Swift SDK for zkSync'
s.description = <<-DESC
zkSync is a scaling and privacy engine for Ethereum. Its current functionality scope includes low gas transfers of ETH and ERC20 tokens in the Ethereum network.
DESC
s.homepage = "https://github.com/zksync-sdk/zksync-swift"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "The Matter Labs team" => "[email protected]" }
s.ios.deployment_target = "11.0"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/zksync-sdk/zksync-swift.git", :tag => "#{s.version}" }
s.dependency 'ZKSyncCrypto', '0.0.9-spm'
s.dependency 'Alamofire', '~> 5.0'
s.dependency 'web3swift', '~> 2.5.0'
s.source_files = 'Sources/ZKSync/**/*'
end