blob: a41f45b46d6e72ed5c0bfcf1752c695ea41611e8 [file] [log] [blame]
{
"name": "JobQueue",
"version": "0.0.20",
"summary": "A persistent and flexible job queue for Swift applications",
"description": "JobQueue is a persistent job queue with a simple API that does not depend on `Operation`/`OperationQueue`, is storage agnostic, supports for manual execution order, per job type concurrency limits, delayed jobs, and more.",
"homepage": "https://github.com/Tundaware/JobQueue",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"George Cox": "george@tundaware.com"
},
"social_media_url": "https://twitter.com/Tundaware",
"platforms": {
"ios": "11.0",
"tvos": "11.0",
"watchos": "4.0",
"osx": "10.13"
},
"source": {
"git": "https://github.com/Tundaware/JobQueue.git",
"tag": "0.0.20"
},
"swift_versions": "5.1",
"subspecs": [
{
"name": "Core",
"source_files": "Sources/JobQueueCore/**/*.swift",
"dependencies": {
"ReactiveSwift": [
"~> 6.2.0"
]
}
},
{
"name": "Queue",
"source_files": "Sources/JobQueue/**/*.swift",
"dependencies": {
"JobQueue/Core": [
],
"ReactiveSwift": [
"~> 6.2.0"
]
}
},
{
"name": "Storage",
"subspecs": [
{
"name": "InMemory",
"source_files": "Sources/JobQueueInMemoryStorage/**/*.swift",
"dependencies": {
"JobQueue/Core": [
],
"ReactiveSwift": [
"~> 6.2.0"
]
}
}
]
}
],
"swift_version": "5.1"
}