BaseKit is a Swift package with a random collection of Foundation extensions and Foundation-level types. It's an extraction of my personal set of utils so I don't have to copy-pasta them across projects.
Currently, BaseKit is only available as a Swift Package.
Open the Package.swift file and edit it:
dependencies
array.// swift-tools-version:5.3
import PackageDescription
let package = Package(
// ...snip...
dependencies: [
.package(url: "https://github.com/andyfinnell/BaseKit.git", from: "0.0.1")
],
targets: [
.target(name: "MyTarget", dependencies: ["BaseKit"])
]
)
Then build to pull down the dependencies:
$ swift build
Use the Swift Packages tab on the project to add BaseKit:
link |
Stars: 0 |
Last commit: 2 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics