[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / 8 / 5 / 9 / AEBinaryTree / 1.0.1 / AEBinaryTree.podspec.json
blob37d4c91843c934510f2315df4f95c9ada2578db9
2   "name": "AEBinaryTree",
3   "version": "1.0.1",
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.1"
21   },
22   "source_files": "AEBinaryTree/**/*.{swift,h,m}"