-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathPodfile
More file actions
28 lines (22 loc) · 701 Bytes
/
Podfile
File metadata and controls
28 lines (22 loc) · 701 Bytes
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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'WebAuthnKitDemo' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod "PromiseKit", "~> 6.13.1"
pod "EllipticCurveKeyPair", "~> 2.0"
pod "KeychainAccess", "~> 4.2.1"
pod "CryptoSwift", "~> 1.3.8"
# Pods for WebAuthnKitDemo
target 'WebAuthnKit' do
inherit! :search_paths
pod "PromiseKit", "~> 6.13.1"
pod "EllipticCurveKeyPair", "~> 2.0"
pod "KeychainAccess", "~> 4.2.1"
pod "CryptoSwift", "~> 1.3.8"
end
target 'WebAuthnKitTests' do
inherit! :search_paths
# Pods for testing
end
end