forked from BigfootDev/flatbuffers
* Moves addition to overflow addition in swift by using &+ Moves code to use Int instead of UInt32 & fixes functions Updates swift performance to great Updated version to 0.5.2 Updated swift package version to 5.2 Updated docker to swift 5.2 Removed all none & arithmetic operations * Small refactoring
23 lines
486 B
Swift
23 lines
486 B
Swift
// swift-tools-version:5.2
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FlatBuffers",
|
|
platforms: [
|
|
.iOS(.v11),
|
|
.macOS(.v10_14),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "FlatBuffers",
|
|
targets: ["FlatBuffers"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "FlatBuffers",
|
|
dependencies: []),
|
|
]
|
|
)
|