-
Notifications
You must be signed in to change notification settings - Fork 18
/
Nakama.podspec
29 lines (25 loc) · 1.11 KB
/
Nakama.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
Pod::Spec.new do |s|
s.name = "Nakama"
s.version = "3.0.0"
s.summary = "Swift client for Nakama server."
s.description = <<-DESC
Swift client for Nakama server.
DESC
s.homepage = "https://heroiclabs.com/docs/swift-ios-client-guide/"
s.license = 'Apache License, Version 2.0'
s.author = { "Heroic Labs" => "[email protected]" }
s.social_media_url = "https://twitter.com/heroicdev"
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
s.source = { :git => "https://github.com/heroiclabs/nakama-swift.git", :tag => "v#{s.version}" }
s.source_files = "Sources/Nakama/*.{h,m,swift}"
s.dependency 'SwiftNIO', '>= 2.25.0', '< 3'
s.dependency 'SwiftNIOSSL', '>= 2.10.1', '< 3'
s.dependency 'SwiftNIOTransportServices', '>= 1.9.1', '< 2'
s.dependency 'SwiftProtobuf', '>= 1.13.0', '< 2'
s.dependency "gRPC-Swift", '>= 1.0.0-alpha.22', '< 2'
s.dependency "PromiseKit", '>= 6', '< 7'
s.dependency "SwiftAtomics", '>= 0.0.2', '< 0.0.3'
end