SSwift Registry.
Get started

Quickstart

Get going in minutes with standard SwiftPM commands.

  1. Register the registry

    Register the registry for your project (or globally with --global).

    bash
    swift package-registry set https://registry.swiftregistry.io
  2. Add a dependency

    Declare dependencies in Package.swift using scope.name identifiers.

    swift
    .package(id: "mona.LinkedList", from: "1.0.0")
  3. Resolve & build

    SwiftPM now fetches dependencies from the registry — no Git clones.

    bash
    swift package resolve

For private packages and automated project setup/diagnosis, the swiftregistry CLI (setup · doctor · analyze) has you covered.

Migrating from Git dependencies