gRPC-Swift.podspec 974 B

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