-
Notifications
You must be signed in to change notification settings - Fork 9
/
Podfile
104 lines (79 loc) · 3.21 KB
/
Podfile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'BlockChain-Coin' do
use_frameworks!
# ☁️ Asynchronous socket networking library for Mac and iOS
# https://github.com/robbiehanson/CocoaAsyncSocket
pod 'CocoaAsyncSocket', '~> 7.6.1'
# ☁️ Type-safe networking abstraction layer
# https://github.com/ishkawa/APIKit
pod 'APIKit', '~> 3.2.1'
# ☁️ A type-safe JSON-RPC 2.0 library
# https://github.com/bricklife/JSONRPCKit
pod 'JSONRPCKit', '~> 3.0.0'
# ☁️ Network abstraction layer written in Swift.
# https://github.com/Moya/Moya
pod 'Moya', '~> 10.0.2'
pod 'Moya/RxSwift', '~> 10.0.2'
# 🛠 Fast hexadecimal string encoding / decoding for NSData
# https://github.com/jmah/NSData-FastHex/releases
pod 'NSData+FastHex', '~> 1.0.1'
# 🛠 Swift implementation of Reactive Extensions
# https://github.com/ReactiveX/RxSwift
pod 'RxSwift', '~> 4.0.0'
# 🛠 RxSwift Cocoa extensions
# https://github.com/ReactiveX/RxSwift
pod 'RxCocoa', '~> 4.0.0'
# 🖼 A Swift Autolayout DSL for iOS & OS X
# https://github.com/SnapKit/SnapKit
pod 'SnapKit', '~> 4.0.0'
# 🖼 Strongly typed, autocompleted resources (images, fonts, etc.)
# https://github.com/mac-cain13/R.swift
pod 'R.swift', '~> 4.0.0'
# 🖼 An iOS activity indicator view
# https://github.com/matej/MBProgressHUD
pod 'MBProgressHUD', '~> 1.1.0'
# 🖼 A lightweight, pure-Swift library for generating pretty QRCode
# https://github.com/EyreFree/EFQRCode
pod 'EFQRCode', '~> 4.2.1'
# 🖼 A simple code reader for iOS
# https://github.com/yannickl/QRCodeReader.swift.git
pod 'QRCodeReader.swift', '~> 8.1.1'
# 🖼 A drop-in UITextView replacement with a placeholder
# https://github.com/glaszig/SZTextView
pod 'SZTextView', '~> 1.3.0'
# 🖼 A UICollectionViewFlowLayout subclass that centers cells
# https://github.com/pitiphong-p/CenterAlignedCollectionViewFlowLayout
pod 'CenterAlignedCollectionViewFlowLayout', '~> 0.6.0'
# 🖼 High performance GIF engine
# https://github.com/kirualex/SwiftyGif
pod 'SwiftyGif', '~> 4.1.0'
# 🔑 An implementation of CEd25519.
# https://github.com/CikeQiu/CEd25519
pod 'CEd25519', '~> 0.1.0'
# 🔑 A simple wrapper for the iOS Keychain
# https://github.com/jrendel/SwiftKeychainWrapper
pod 'SwiftKeychainWrapper', '~> 3.0.1'
# 🔑 Arbitrary-precision arithmetic in pure Swift
# https://github.com/attaswift/BigInt
pod 'BigInt', '~> 3.0.1'
# 🔑 A collection of standard and secure cryptographic algorithms
# https://github.com/krzyzanowskim/CryptoSwift
pod 'CryptoSwift', '~> 0.8.1'
# 🔑 Base64 Additions for NSData and NSString
# https://github.com/ekscrypto/Base64
pod 'Base64', '~> 1.1.2'
# 🐛 A local and cloud logging platform
# https://github.com/SwiftyBeaver/SwiftyBeaver
pod 'SwiftyBeaver', '~> 1.4.2'
# The easy way to use sockets on Apple platforms
# https://github.com/swiftsocket/SwiftSocket
pod 'SwiftSocket', '~> 2.0.2'
# An RSS, Atom and JSON Feed parser written in Swift
# https://github.com/nmdias/FeedKit
pod 'FeedKit', '~> 7.1.0'
# 🐛 Crash reporter and beta utilities
# http://fabric.io
pod 'Fabric'
pod 'Crashlytics'
end