-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkynet.podspec
36 lines (29 loc) · 1.15 KB
/
Skynet.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
#
# Be sure to run `pod lib lint Skynet.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Skynet'
s.version = '0.1.4'
s.summary = 'Skynet SDK for iOS and macOS'
s.description = <<-DESC
Use Sia Skynet in your iOS or macOS projects (Decentralized database)
DESC
s.homepage = 'https://github.com/ppamorim/skynet-swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Pedro Paulo de Amorim' => '[email protected]' }
s.source = { :git => 'https://github.com/ppamorim/skynet-swift.git', :tag => s.version.to_s }
s.source_files =
'Sources/**/*.swift',
'Sources/Blake2b/*.{h,m,c}',
'Sources/Blake2b/**/*.{h,m,c}'
s.swift_versions = ['5.2']
s.ios.deployment_target = '12.1'
s.osx.deployment_target = '10.12'
s.dependency 'CryptoSwift', '~> 1.4.0'
s.dependency 'ed25519swift', '~> 1.2.8'
s.dependency 'TweetNacl'
end