2
0

gRPC-Swift.podspec 941 B

123456789101112131415161718192021222324252627
  1. Pod::Spec.new do |s|
  2. s.name = 'gRPC-Swift'
  3. s.module_name = 'GRPC'
  4. s.version = '1.0.0-alpha.11'
  5. s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
  6. s.summary = 'Swift gRPC code generator plugin and runtime library'
  7. s.homepage = 'https://www.grpc.io'
  8. s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
  9. s.source = { :git => 'https://github.com/grpc/grpc-swift.git', :tag => s.version }
  10. s.swift_version = '5.0'
  11. s.ios.deployment_target = '10.0'
  12. s.osx.deployment_target = '10.10'
  13. s.tvos.deployment_target = '10.0'
  14. s.source_files = 'Sources/GRPC/**/*.{swift,c,h}'
  15. s.dependency 'Logging', '1.2.0'
  16. s.dependency 'SwiftNIO', '2.15.0'
  17. s.dependency 'SwiftNIOHTTP2', '1.11.0'
  18. s.dependency 'SwiftNIOSSL', '2.7.1'
  19. s.dependency 'SwiftNIOTransportServices', '1.3.0'
  20. s.dependency 'SwiftProtobuf', '1.8.0'
  21. s.dependency 'CGRPCZlib', s.version.to_s
  22. end