├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── catalog-info.json ├── icons.json ├── scripts ├── generate-catalog-info.sh └── validate.sh ├── sidebar ├── Compression │ └── index.json ├── Data Formats │ ├── HTML │ │ └── index.json │ ├── JSON │ │ └── index.json │ ├── Markdown │ │ └── index.json │ ├── Protobuf │ │ └── index.json │ ├── XML │ │ └── index.json │ └── index.json ├── Data Structures │ └── index.json ├── Databases │ ├── MySQL │ │ └── index.json │ ├── Northwind │ │ └── index.json │ ├── ORMs │ │ └── index.json │ ├── PostgreSQL │ │ └── index.json │ ├── Realm │ │ └── index.json │ ├── Redis │ │ └── index.json │ ├── SQLite │ │ └── index.json │ ├── SwiftData │ │ └── index.json │ └── index.json ├── Embedded │ └── index.json ├── Encryption │ └── index.json ├── Fun Stuff │ └── index.json ├── Macros │ └── index.json ├── Networking │ └── index.json ├── Server Side │ ├── AWS │ │ └── index.json │ ├── Macro │ │ └── index.json │ ├── SSWG │ │ └── index.json │ ├── Slack │ │ └── index.json │ ├── Swift NIO │ │ └── index.json │ ├── Vapor │ │ └── index.json │ └── index.json ├── Shell │ └── index.json ├── SwiftUI │ └── index.json ├── Wanderlust │ └── index.json └── index.json ├── snapshot-images.json └── spmlib2rss.swift /.gitignore: -------------------------------------------------------------------------------- 1 | internal-deploy.sh 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/README.md -------------------------------------------------------------------------------- /catalog-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/catalog-info.json -------------------------------------------------------------------------------- /icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/icons.json -------------------------------------------------------------------------------- /scripts/generate-catalog-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/scripts/generate-catalog-info.sh -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/scripts/validate.sh -------------------------------------------------------------------------------- /sidebar/Compression/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Compression/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/HTML/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/HTML/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/JSON/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/JSON/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/Markdown/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/Markdown/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/Protobuf/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/Protobuf/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/XML/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/XML/index.json -------------------------------------------------------------------------------- /sidebar/Data Formats/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Formats/index.json -------------------------------------------------------------------------------- /sidebar/Data Structures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Data Structures/index.json -------------------------------------------------------------------------------- /sidebar/Databases/MySQL/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/MySQL/index.json -------------------------------------------------------------------------------- /sidebar/Databases/Northwind/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/Northwind/index.json -------------------------------------------------------------------------------- /sidebar/Databases/ORMs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/ORMs/index.json -------------------------------------------------------------------------------- /sidebar/Databases/PostgreSQL/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/PostgreSQL/index.json -------------------------------------------------------------------------------- /sidebar/Databases/Realm/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/Realm/index.json -------------------------------------------------------------------------------- /sidebar/Databases/Redis/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/Redis/index.json -------------------------------------------------------------------------------- /sidebar/Databases/SQLite/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/SQLite/index.json -------------------------------------------------------------------------------- /sidebar/Databases/SwiftData/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/SwiftData/index.json -------------------------------------------------------------------------------- /sidebar/Databases/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Databases/index.json -------------------------------------------------------------------------------- /sidebar/Embedded/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Embedded/index.json -------------------------------------------------------------------------------- /sidebar/Encryption/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Encryption/index.json -------------------------------------------------------------------------------- /sidebar/Fun Stuff/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Fun Stuff/index.json -------------------------------------------------------------------------------- /sidebar/Macros/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Macros/index.json -------------------------------------------------------------------------------- /sidebar/Networking/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Networking/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/AWS/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/AWS/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/Macro/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/Macro/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/SSWG/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/SSWG/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/Slack/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/Slack/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/Swift NIO/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/Swift NIO/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/Vapor/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/Vapor/index.json -------------------------------------------------------------------------------- /sidebar/Server Side/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Server Side/index.json -------------------------------------------------------------------------------- /sidebar/Shell/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Shell/index.json -------------------------------------------------------------------------------- /sidebar/SwiftUI/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/SwiftUI/index.json -------------------------------------------------------------------------------- /sidebar/Wanderlust/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/Wanderlust/index.json -------------------------------------------------------------------------------- /sidebar/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/sidebar/index.json -------------------------------------------------------------------------------- /snapshot-images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/snapshot-images.json -------------------------------------------------------------------------------- /spmlib2rss.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/SwiftPMCatalog/HEAD/spmlib2rss.swift --------------------------------------------------------------------------------