[Add] TensorFlowLiteSwift 0.0.1-nightly.20241222
[CocoaPods.git] / Specs / b / 6 / a / MeshPipe / 0.1.0 / MeshPipe.podspec.json
blob8f97502df0ef3f0baaa575836238c2883600364b
2   "name": "MeshPipe",
3   "version": "0.1.0",
4   "summary": "IPC library for iOS",
5   "description": "MeshPipe is an IPC (inter-process communication) library for iOS using UDP networking.\nIt allows multiple running applications on a single iOS device to send arbitrary data to each other.\nIt:\n\n* Automatically connects to all other MeshPipe apps that are configured with the same port\n* Detects when other apps disconnect or disappear, giving you a list of available peers\n\nSince it is based on UDP, there are some hard-wired limitations:\n\n* Message must fit within a single UDP datagram. The current UDP datagram max size on iOS is 9216 bytes.\n* Delivery is not guaranteed. Messages may or may not get through, may arrive from seemingly unavailable peers, or arrive out of order.\n* You may receive malicious or unexpected data, as any app on the phone could craft a message and send it to your app.\n* Communication is insecure, and any app on the device might listen in or even change messages.",
6   "homepage": "https://github.com/nevyn/MeshPipe",
7   "license": {
8     "type": "Simplified BSD",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Nevyn Bengtsson": "nevyn.jpg@gmail.com"
13   },
14   "social_media_url": "http://twitter.com/nevyn",
15   "source": {
16     "git": "https://github.com/nevyn/MeshPipe.git",
17     "tag": "0.1.0"
18   },
19   "platforms": {
20     "ios": "7.0",
21     "osx": "10.9"
22   },
23   "default_subspecs": "Core",
24   "subspecs": [
25     {
26       "name": "Core",
27       "source_files": "MeshPipe/*.{h,m}",
28       "exclude_files": "MeshPipe/main.m",
29       "public_header_files": "MeshPipe/MeshPipe.h"
30     },
31     {
32       "name": "CerfingMeshPipe",
33       "source_files": "CerfingMeshPipeTransport/*.{h,m}",
34       "exclude_files": "CerfingMeshPipeTransport/main.m",
35       "dependencies": {
36         "Cerfing": [
38         ],
39         "MeshPipe/Core": [
41         ]
42       }
43     }
44   ]