Compatibility
- 1.0.55.35.25.15.04.2
- main5.35.25.15.04.2
- 1.0.5iOSmacOS(Intel)macOS(ARM)LinuxtvOSwatchOS
- mainiOSmacOS(Intel)macOS(ARM)LinuxtvOSwatchOS
Swift CLI tool that provides information about a Swift Package
CLI tool that provides information about a given Swift Package product, such as a measurament of its binary size impact. It's built on top of Swift Argument Parser.
OVERVIEW: A tool for analyzing Swift Packages
Provides valuable information about a given Swift Package,
that can be used in your favor when deciding whether to
adopt or not a Swift Package as a dependency on your app.
USAGE: swift-package-info <subcommand>
OPTIONS:
--version Show the version.
-h, --help Show help information.
SUBCOMMANDS:
binary-size Estimated binary size of a Swift Package product.
platforms Shows platforms supported b a Package product.
dependencies List dependencies of a Package product.
full-analyzes (default) All available information about a Swift Package product.
See 'swift-package-info help <subcommand>' for detailed help.
swift-package-info --for https://github.com/ReactiveX/RxSwift -v 6.0.0 --product RxSwift
+------------------------------------------------+
| Swift Package Info |
| |
| RxSwift, 6.0.0 |
+--------------+---------------------------------+
| Provider | Results |
+--------------+---------------------------------+
| Binary Size | Binary size increases by 963 KB |
| Platforms | System default |
| Dependencies | No third-party dependencies :) |
+--------------+---------------------------------+
> Total of 3 providers used.
swift-package-info platforms --for https://github.com/krzyzanowskim/CryptoSwift -v 1.3.8 --product CryptoSwift
+----------------------------------------------------------------------+
| Swift Package Info |
| |
| CryptoSwift, 1.3.8 |
+-----------+----------------------------------------------------------+
| Provider | Results |
+-----------+----------------------------------------------------------+
| Platforms | macos from v. 10.12 | ios from v. 9.0 | tvos from v. 9.0 |
+-----------+----------------------------------------------------------+
> Total of 1 provider used.
mint install marinofelipe/swift-package-info
Build from Swift Package Manager
swift build
in the top level directory.build/debug/swift-package-info
swift run
Run from Xcode
swift-package-info
scheme customWorkingDirectoryRun from command line
swift test --build-path PROJECT_DIR
Its methodology is inspired by cocoapods-size, and thus works by comparing archives with no bitcode and ARM64 arch. Such strategy has proven to be consistent with the size added to iOS apps downloaded and installed via TestFlight.
Special thanks to @unnamedd for sharing his experience with swift-tools-support-core and on how to build a pretty 👌 report.
Swift Package Info is fully open and your contributions are more than welcome.