[Add] DoordeckSDK 0.42.0
[CocoaPods.git] / Specs / 8 / 5 / 9 / AEBinaryTree / 1.0.0 / AEBinaryTree.podspec.json
blob5d9b12cffe88d69a484e53926ff735846ef75902
2   "name": "AEBinaryTree",
3   "version": "1.0.0",
4   "summary": "A thread-safe Swift Binary Search Tree implementing the AVL self-balancing algorithm",
5   "description": "A thread-safe Swift Binary Search Tree.  This implementation conforms to the AVL self-balancing algorithm guaranteeing that all branches of the tree have a depth difference of less than 2.  All accessor methods are thread-safe, with internal operations performed on an internal dispatch queue off the main thread.  Random access subscripting is available with O(logN) complexity, but enabling the BinaryTree to be used for populating tableviews and collection views.",
6   "homepage": "http://github.com/AllanEvans/BinaryTree-Swift",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Allan Evans": "allan@aelyssum.com"
13   },
14   "platforms": {
15     "ios": "9.0"
16   },
17   "swift_version": "4.1",
18   "source": {
19     "git": "https://github.com/AllanEvans/BinaryTree-Swift.git",
20     "tag": "1.0.0"
21   },
22   "source_files": "AEBinaryTree/**/*.{swift,h,m}"