Quickstart
Get going in minutes with standard SwiftPM commands.
Register the registry
Register the registry for your project (or globally with --global).
bashswift package-registry set https://registry.swiftregistry.ioAdd a dependency
Declare dependencies in Package.swift using scope.name identifiers.
swift.package(id: "mona.LinkedList", from: "1.0.0")Resolve & build
SwiftPM now fetches dependencies from the registry — no Git clones.
bashswift package resolve
For private packages and automated project setup/diagnosis, the swiftregistry CLI (setup · doctor · analyze) has you covered.
Migrating from Git dependencies →