1- [](https://github.com/apple/swift)
2- [](https://github.com/apple/swift-package-manager)
3- [](https://en.wikipedia.org/wiki/List_of_Apple_operating_systems)
4- [ ![ build-status] ( https://github.com/backslash-f/toolbox/actions/workflows/swift.yml/badge.svg?branch=main )] ( https://github.com/backslash-f/toolbox/actions )
5- [](https://en.wikipedia.org/wiki/MIT_License)
1+ [ ![ swift-version] ( https://img.shields.io/badge/swift-6.2-ea7a50.svg?logo=swift&logoColor=white )] ( https://developer.apple.com/swift/ )
2+ [ ![ xcode-version] ( https://img.shields.io/badge/xcode-26.2-50ace8.svg?logo=xcode&logoColor=white )] ( https://developer.apple.com/xcode/ )
3+ [ ![ spm-ready] ( https://img.shields.io/badge/spm-ready-b68f6a.svg?logo=gitlfs&logoColor=white )] ( https://developer.apple.com/documentation/xcode/swift-packages )
4+ [ ![ platforms] ( https://img.shields.io/badge/platforms-iOS%2017+%20%7C%20macOS%2014+%20-lightgrey.svg?logo=apple&logoColor=white )] ( https://en.wikipedia.org/wiki/List_of_Apple_operating_systems )
5+ [ ![ license] ( https://img.shields.io/badge/license-MIT-67ac5b.svg?logo=googledocs&logoColor=white )] ( https://en.wikipedia.org/wiki/MIT_License )
6+ [ ![ release] ( https://github.com/thatfactory/toolbox/actions/workflows/release.yml/badge.svg )] ( https://github.com/thatfactory/toolbox/actions/workflows/release.yml )
67
78# Toolbox 🧰
89A collection of useful Swift tools.
@@ -24,20 +25,26 @@ In your `Package.swift`, add `Toolbox` as a dependency:
2425
2526``` swift
2627dependencies: [
27- .package (url : " https://github.com/backslash-f/toolbox" , from : " 1.0.0" )
28+ .package (
29+ url : " https://github.com/thatfactory/toolbox" ,
30+ from : " 0.1.0"
31+ )
2832]
2933```
3034
3135Associate the dependency with your target:
3236
3337``` swift
3438targets: [
35- .target (
36- name : " YourAppName" ,
37- dependencies : [
38- .product (name : " Toolbox" , package : " toolbox" )
39- ]
40- )
39+ .target (
40+ name : " YourTarget" ,
41+ dependencies : [
42+ .product (
43+ name : " Toolbox" ,
44+ package : " toolbox"
45+ )
46+ ]
47+ )
4148]
4249```
4350
0 commit comments