blob: 61f4b8ae781353752a8ab3943a3bdd0aaaf51a9c [file] [log] [blame]
{
"name": "Kingfisher",
"version": "5.15.5",
"summary": "A lightweight and pure Swift implemented library for downloading and cacheing image from the web.",
"description": "Kingfisher is a powerful and pure Swift implemented library for downloading and cacheing image from the web. It provides you a chance to use pure Swift alternation in your next app.\n\n* Everything in Kingfisher goes asynchronously, not only downloading, but also caching. That means you can never worry about blocking your UI thread.\n* Multiple-layer cache. Downloaded image will be cached in both memory and disk. So there is no need to download it again and this could boost your app dramatically.\n* Cache management. You can set the max duration or size the cache could take. And the cache will also be cleaned automatically to prevent taking too much resource.\n* Modern framework. Kingfisher uses `NSURLSession` and the latest technology of GCD, which makes it a strong and swift framework. It also provides you easy APIs to use.\n* Cancellable processing task. You can cancel the downloading or retriving image process if it is not needed anymore.\n* Independent components. You can use the downloader or caching system separately. Or even create your own cache based on Kingfisher's code.\n* Options to decompress the image in background before render it, which could improve the UI performance.\n* A category over `UIImageView` for setting image from an url directly.",
"homepage": "https://github.com/onevcat/Kingfisher",
"screenshots": "https://raw.githubusercontent.com/onevcat/Kingfisher/master/images/logo.png",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"onevcat": "onevcat@gmail.com"
},
"social_media_url": "https://twitter.com/onevcat",
"swift_versions": [
"4.0",
"4.2",
"5.0"
],
"platforms": {
"ios": "10.0",
"tvos": "10.0",
"osx": "10.12",
"watchos": "3.0"
},
"source": {
"git": "https://github.com/onevcat/Kingfisher.git",
"tag": "5.15.5"
},
"default_subspecs": "Core",
"requires_arc": true,
"frameworks": [
"CFNetwork",
"Accelerate"
],
"subspecs": [
{
"name": "Core",
"source_files": [
"Sources/**/*.swift",
"Sources/Kingfisher.h"
],
"exclude_files": [
"Sources/SwiftUI/**"
]
},
{
"name": "SwiftUI",
"source_files": [
"Sources/SwiftUI/**"
],
"exclude_files": [
"Sources/SwiftUI/Delegate.swift"
],
"dependencies": {
"Kingfisher/Core": [
]
},
"platforms": {
"ios": "10.0",
"tvos": "10.0",
"osx": "10.12",
"watchos": "3.0"
},
"pod_target_xcconfig": {
"OTHER_SWIFT_FLAGS": "-DKingfisherCocoaPods"
}
}
],
"swift_version": "5.0"
}