-
Notifications
You must be signed in to change notification settings - Fork 5
/
CITA.podspec
27 lines (23 loc) · 961 Bytes
/
CITA.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 = "CITA"
s.version = "0.24.1"
s.summary = "CITA SDK implementation in Swift for iOS"
s.description = <<-DESC
CITA SDK implementation in Swift for iOS, intended for mobile developers of wallets and Dapps.
DESC
s.homepage = "https://github.com/cryptape/cita-sdk-swift"
s.license = "MIT"
s.author = { "Cryptape" => "[email protected]" }
s.source = { git: "https://github.com/cryptape/cita-sdk-swift.git", tag: "v#{s.version.to_s}" }
s.swift_version = '5.0'
s.module_name = 'CITA'
s.ios.deployment_target = "10.2"
s.source_files = "Source/**/*.{h,swift}"
s.public_header_files = "Source/**/*.{h}"
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.dependency 'SwiftProtobuf', '~> 1.2.0'
s.dependency "secp256k1.swift", "~> 0.1.4"
s.dependency 'CryptoSwift', '~> 1.0.0'
s.dependency 'BigInt', '~> 3.1'
s.dependency 'PromiseKit', '~> 6.8.4'
end