SwiftExt is a common utility and extension library designed for Swift projects, providing clean, efficient, thread-safe.
Add the dependency in your Package.swift file:
dependencies: [
.package(url: "https://github.com/hsiafan/swift-ext.git", from: "0.2.0")
]Then, add SwiftExt to your target dependencies:
.target(
name: "YourTarget",
dependencies: ["SwiftExt"]
)