forked from BlockchainCommons/URKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURKit.podspec
More file actions
17 lines (17 loc) · 810 Bytes
/
URKit.podspec
File metadata and controls
17 lines (17 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "URKit"
spec.version = "11.5.0"
spec.summary = "UR (Uniform Resources) reference framework for Swift"
spec.description = "An iOS framework for encoding and decoding URs (Uniform Resources)"
spec.homepage = "https://github.com/KeystoneHQ/URKit.git"
spec.license = { :type => "BSD", :file => "LICENSE.md" }
spec.author = "Keystone"
spec.social_media_url = "https://twitter.com/KeystoneWallet"
spec.swift_version = "5.6"
spec.ios.deployment_target = "13.0"
spec.source = { :git => "https://github.com/KeystoneHQ/URKit.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/URKit/**/*.swift"
spec.requires_arc = true
spec.dependency "DCBOR", "~> 0.10.0"
spec.dependency "BCCrypto", "~> 0.9.0"
end