mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* Adds the basic structure for required to add grpc support Added the message implementation Updated the code to confirm to the protocol flatbuffersobject Adds an example for Swift flatbuffers GRPC Started implementing the swift GRPC code Gen Generator generates protocols now Fixing ci issues Migrated the logic to use grpc_generator::File instead of string Refactored swift project Implemented GRPC in swift Finished implementing GRPC in swift Fixes issues Adds contiguousBytes initializer to swift Adds documentation + fixes buffer nameing in tables + structs Adds documentation + fixes buffer nameing in tables + structs Updated tests * Updated version
22 lines
895 B
Ruby
22 lines
895 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'FlatBuffers'
|
|
s.version = '0.2.0'
|
|
s.summary = 'FlatBuffers: Memory Efficient Serialization Library'
|
|
|
|
s.description = "FlatBuffers is a cross platform serialization library architected for
|
|
maximum memory efficiency. It allows you to directly access serialized
|
|
data without parsing/unpacking it first, while still having great
|
|
forwards/backwards compatibility."
|
|
|
|
s.homepage = 'https://github.com/google/flatbuffers'
|
|
s.license = { :type => 'Apache2.0', :file => 'LICENSE' }
|
|
s.author = { 'mustii' => 'mustii@mmk.one' }
|
|
s.source = { :git => 'https://github.com/mustiikhalil/flatbuffers.git', :tag => s.version.to_s, :submodules => true }
|
|
|
|
s.ios.deployment_target = '11.0'
|
|
s.osx.deployment_target = '10.14'
|
|
|
|
s.swift_version = '5.0'
|
|
s.source_files = 'Sources/**/*'
|
|
end
|