forked from unstoppabledomains/resolution-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnstoppableDomainsResolution.podspec
More file actions
30 lines (21 loc) · 1.16 KB
/
UnstoppableDomainsResolution.podspec
File metadata and controls
30 lines (21 loc) · 1.16 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
Pod::Spec.new do |spec|
spec.name = "UnstoppableDomainsResolution"
spec.version = "0.2.1"
spec.summary = "Swift framework for resolving Unstoppable domains."
spec.description = <<-DESC
This framework helps to resolve a decentralised domain names such as brad.crypto
DESC
spec.homepage = "https://github.com/unstoppabledomains/resolution-swift"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.author = { "JohnnyJumper" => "[email protected]", "Sergei Merenkov" => "[email protected]", "Roman Medvid" => "[email protected]" }
spec.social_media_url = 'https://twitter.com/unstoppableweb'
spec.ios.deployment_target = "11.0"
spec.swift_version = '5.0'
spec.source = { :git => "https://github.com/unstoppabledomains/resolution-swift.git", :tag => spec.version }
spec.source_files = "Sources/UnstoppableDomainsResolution/**/*"
spec.resources = "Sources/UnstoppableDomainsResolution/Resources/**/*"
spec.dependency 'Base58Swift', '~> 2.1'
spec.dependency 'EthereumAddress', '~> 1.3'
spec.dependency 'CryptoSwift', '~> 1.0'
spec.dependency 'BigInt'
end