Files
swiftpm-stencil/docs/installation.rst
T. R. Bernstein 02f61d55a4
Some checks failed
Danger / Danger Check (push) Has been cancelled
Lint Cocoapods / Pod Lint (push) Has been cancelled
SwiftLint / SwiftLint (push) Has been cancelled
Test SPM / Test SPM Linux (push) Has been cancelled
Test SPM / Test SPM macOS (push) Has been cancelled
Publish on Tag / GitHub Release (push) Has been cancelled
chore: release 0.15.2
2025-09-30 23:14:57 +02:00

20 lines
427 B
ReStructuredText

Installation
============
Swift Package Manager
---------------------
If you're using the Swift Package Manager, you can add ``Stencil`` to your
dependencies inside ``Package.swift``.
.. code-block:: swift
import PackageDescription
let package = Package(
name: "MyApplication",
dependencies: [
.package(url: "https://github.com/swiftstencil/swiftpm-stencil.git", from: "0.15.2"),
]
)