forked from lyokato/WebAuthnKit-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebAuthnKit.podspec
More file actions
43 lines (29 loc) · 1.33 KB
/
WebAuthnKit.podspec
File metadata and controls
43 lines (29 loc) · 1.33 KB
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.2"
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" => "lyo.kato@gmail.com" }
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.0"
s.dependency "EllipticCurveKeyPair", "~> 2.0-beta1"
s.dependency "KeychainAccess", "~> 3.1.2"
s.dependency "CryptoSwift", "~> 0.13.0"
s.swift_version = "4.2"
end