blob: 071282390891a48e127f1a1d6187ed67be971e46 [file] [log] [blame]
{
"name": "DataStructExtension",
"version": "0.2.0",
"summary": "Extend some classic data strures with Swift",
"description": "Swift Implementation for Classic Data Strucutures.",
"homepage": "https://github.com/install-b/DataStruct",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"shangenzhang": "zsg"
},
"source": {
"git": "https://github.com/install-b/DataStruct.git",
"tag": "0.2.0"
},
"platforms": {
"ios": "9.0",
"osx": "10.10",
"watchos": "2.0",
"tvos": "9.0"
},
"swift_versions": [
"4.2",
"5.0",
"5.1"
],
"subspecs": [
{
"name": "Queue",
"source_files": "Classes/Queue/**/*.swift"
},
{
"name": "Stack",
"source_files": "Classes/Stack/**/*.swift"
},
{
"name": "LinkList",
"dependencies": {
"DataStructExtension/Queue": [
],
"DataStructExtension/Stack": [
]
},
"source_files": "Classes/LinkList/**/*.swift"
},
{
"name": "BinaryTree",
"source_files": "Classes/BinaryTree/**/*.swift"
},
{
"name": "Hash",
"source_files": "Classes/Hash/**/*.swift"
}
],
"swift_version": "5.1"
}