We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6350a0 commit 26b49b3Copy full SHA for 26b49b3
1 file changed
README.md
@@ -1 +1,26 @@
1
-# Swift Package for libgit2
+# Clibgit2 – Swift Package for libgit2
2
+
3
+This is a Swift package for linking to the [libgit2](https://libgit2.org) library.
4
+macOS is currently the only supported platform given the build configuration in the package manifest.
5
6
+This package does not provide any Swift API overlay and instead just offers access to the C API.
7
8
+## Usage
9
10
+Include this package as a dependency like so:
11
12
+```swift
13
+let package = Package(
14
+ // ...
15
+ platforms: [
16
+ .macOS(.v11),
17
+ ],
18
19
+ dependencies: [
20
+ .package(url: "https://github.com/Formkunft/Clibgit2", from: "1.9.0"),
21
22
23
+)
24
+```
25
26
+The version numbers of this package follow the version numbers of libgit2.
0 commit comments