forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gRPC-Swift.podspec
29 lines (24 loc) · 1.09 KB
/
gRPC-Swift.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 = 'gRPC-Swift'
s.module_name = 'GRPC'
s.version = '1.6.0'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.summary = 'Swift gRPC code generator plugin and runtime library'
s.homepage = 'https://www.grpc.io'
s.authors = { 'The gRPC contributors' => '[email protected]' }
s.swift_version = '5.2'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.source = { :git => "https://github.com/grpc/grpc-swift.git", :tag => s.version }
s.source_files = 'Sources/GRPC/**/*.{swift,c,h}'
s.dependency 'CGRPCZlib', s.version.to_s
s.dependency 'Logging', '>= 1.4.0', '< 2.0.0'
s.dependency 'SwiftNIO', '>= 2.32.0', '< 3.0.0'
s.dependency 'SwiftNIOExtras', '>= 1.4.0', '< 2.0.0'
s.dependency 'SwiftNIOHTTP2', '>= 1.18.2', '< 2.0.0'
s.dependency 'SwiftNIOSSL', '>= 2.14.0', '< 3.0.0'
s.dependency 'SwiftNIOTransportServices', '>= 1.11.1', '< 2.0.0'
s.dependency 'SwiftProtobuf', '>= 1.9.0', '< 2.0.0'
end