// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "DemoPackage",
dependencies: [
.package(url: "https://github.com/yutailang0119/ProgressSpinnerKit", from: "0.4.0"),
],
targets: [
.target(name: "DemoTarget", dependencies: ["ProgressSpinnerKit"]),
]
)
import TSCBasic
import ProgressSpinnerKit
let spinner = createProgressSpinner(forStream: TSCBasic.stdoutStream, header: " Loading:")
spinner.start()
// Something on the main thread.
spinner.stop()
ProgressSpinnerKit is available under the MIT license. See the LICENSE file for more info. This software includes the work that is distributed in the Apache License 2.0.
A library to display an ActivityIndicator for CLI.
Motivated by
A Work In Progress
ProgressSpinnerKit is still in active development.
Dome
Installation
Swift Package Manager
https://github.com/apple/swift-package-manager
Usage
Author
Yutaro Muta
License
ProgressSpinnerKit is available under the MIT license. See the LICENSE file for more info.
This software includes the work that is distributed in the Apache License 2.0.