-
Notifications
You must be signed in to change notification settings - Fork 30
/
WebAuthnKit.podspec
43 lines (29 loc) · 1.32 KB
/
WebAuthnKit.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Pod::Spec.new do |s|
s.name = "WebAuthnKit"
s.version = "0.9.6"
s.summary = "WebAuthn Client and Authenticator Support Library"
s.description = <<-DESC
This library provides you a way to handle W3C Web Authentication API (a.k.a. WebAuthN / FIDO 2.0) easily.
DESC
s.homepage = "https://github.com/lyokato/WebAuthnKit"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "lyokato" => "[email protected]" }
s.social_media_url = "http://twitter.com/lyokato"
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/lyokato/WebAuthnKit.git", :tag => "#{s.version}" }
s.source_files = "WebAuthnKit/Sources/**/*.swift"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.framework = "Foundation", "UIKit", "LocalAuthentication"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
# s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
s.dependency "PromiseKit", "~> 6.13.1"
s.dependency "EllipticCurveKeyPair", "~> 2.0"
s.dependency "KeychainAccess", "~> 4.2.1"
s.dependency "CryptoSwift", "~> 1.3.8"
s.swift_version = "4.2"
end