-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPodfile
49 lines (34 loc) · 1.24 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
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
workspace 'AtomicSwapKit'
project 'Demo/Demo'
project 'AtomicSwapCore/AtomicSwapCore'
project 'AtomicSwapBitcoinProvider/AtomicSwapBitcoinProvider'
target :AtomicSwapCore do
project 'AtomicSwapCore/AtomicSwapCore'
pod 'HSCryptoKit', '~> 1.4'
pod 'GRDB.swift', '~> 4.0'
end
target :AtomicSwapBitcoinProvider do
project 'AtomicSwapBitcoinProvider/AtomicSwapBitcoinProvider'
pod 'HSCryptoKit', '~> 1.4'
pod 'BitcoinCore.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
pod 'BitcoinKit.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
pod 'BitcoinCashKit.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
end
target :Demo do
project 'Demo/Demo'
pod 'RSSelectionMenu'
pod 'HSHDWalletKit', '~> 1.1'
pod 'RxSwift', '~> 5.0'
pod 'BitcoinCore.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
pod 'BitcoinKit.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
pod 'BitcoinCashKit.swift', git: 'https://github.com/horizontalsystems/bitcoin-kit-ios/'
end
target :AtomicSwapCoreTests do
project 'AtomicSwapCore/AtomicSwapCore'
pod 'Quick'
pod 'Nimble'
pod 'Cuckoo'
end